From 80bc04ecbc387de346287cae00e1d68d46d53f17 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 25 Apr 2020 08:23:29 +0300 Subject: 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 --- .github/workflows/test.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to '.github/workflows') 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 -- cgit v1.2.3