Merge branch 'master' into node-versions

This commit is contained in:
Bryan MacFarlane 2020-05-02 16:34:40 -04:00 committed by GitHub
commit 501fd29d66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 2 deletions

View File

@ -28,7 +28,13 @@ jobs:
run: __tests__/verify-no-unstaged-changes.sh run: __tests__/verify-no-unstaged-changes.sh
test: test:
runs-on: ubuntu-latest runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest]
defaults:
run:
shell: bash
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Clear tool cache - name: Clear tool cache

View File

@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-16.04 runs-on: ubuntu-16.04
strategy: strategy:
matrix: matrix:
node: [ '10', '8' ] node: [ '10', '12' ]
name: Node ${{ matrix.node }} sample name: Node ${{ matrix.node }} sample
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

1
dist/index.js vendored
View File

@ -16072,6 +16072,7 @@ function hasNextPage (link) {
"use strict"; "use strict";
Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "__esModule", { value: true });
const main_1 = __webpack_require__(198); const main_1 = __webpack_require__(198);
main_1.run(); main_1.run();
//# sourceMappingURL=setup-node.js.map //# sourceMappingURL=setup-node.js.map

View File

@ -24,6 +24,7 @@
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "^1.2.2", "@actions/core": "^1.2.2",
"@actions/exec": "^1.0.3",
"@actions/github": "^1.1.0", "@actions/github": "^1.1.0",
"@actions/http-client": "^1.0.6", "@actions/http-client": "^1.0.6",
"@actions/io": "^1.0.2", "@actions/io": "^1.0.2",