diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ee7fd4e..a562e8b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,7 +1,6 @@ name: Tests + on: [push, pull_request] -env: - CI: true jobs: run: @@ -11,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - node: [8.6, 10, 12, 13] + node: [8.6, 10, 12, 14] os: [ubuntu-latest, windows-latest, macOS-latest] steps: @@ -19,13 +18,10 @@ jobs: uses: actions/checkout@v2 - name: Set Node.js version - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node }} - - run: node --version - - run: npm --version - - name: Install npm dependencies run: npm install @@ -35,6 +31,6 @@ jobs: - name: Run Coveralls # `master` should be a tag but they don't have one uses: coverallsapp/github-action@master - if: startsWith(matrix.os, 'ubuntu') && matrix.node == 12 + if: startsWith(matrix.os, 'ubuntu') && matrix.node == 14 with: github-token: "${{ secrets.GITHUB_TOKEN }}"