diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9fca48c..d348d37 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,14 +4,14 @@ env: CI: true jobs: - run: + test: name: Node ${{ matrix.node }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - node: [6, 8, 10, 12] + node: [6, 8, 10, 12, 14] os: [ubuntu-latest, windows-latest] steps: @@ -23,9 +23,6 @@ jobs: with: node-version: ${{ matrix.node }} - - run: node --version - - run: npm --version - - name: Install npm dependencies run: npm install # switch to `npm ci` when Node.js 6 support is dropped @@ -43,11 +40,11 @@ jobs: parallel: true finish: - needs: run + needs: test runs-on: ubuntu-latest steps: - name: Coveralls Finished uses: coverallsapp/github-action@master with: - github-token: ${{ secrets.github_token }} + github-token: ${{ secrets.GITHUB_TOKEN }} parallel-finished: true |
