diff options
| author | XhmikosR <[email protected]> | 2020-04-25 08:23:29 +0300 |
|---|---|---|
| committer | Nick Merwin <[email protected]> | 2020-04-30 16:31:28 -0700 |
| commit | 80bc04ecbc387de346287cae00e1d68d46d53f17 (patch) | |
| tree | 9b7dc31891c7453a0a0251f779abcdd32235e753 /.github | |
| parent | 14e8b444aca46bc830d26d060858f327e953b491 (diff) | |
| download | node-coveralls-80bc04ecbc387de346287cae00e1d68d46d53f17.tar.xz node-coveralls-80bc04ecbc387de346287cae00e1d68d46d53f17.zip | |
Minor CI tweaks
* add Node.js 14
* rename job to test
* uppercase `GITHUB_TOKEN` for consistency
* remove no longer needed steps; `actions-setup-node` prints this by default now
Diffstat (limited to '.github')
| -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 |
