diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 2d7e146..36b27d5 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -8,13 +8,13 @@ on: jobs: test: - name: Node ${{ matrix.node }} on ${{ matrix.os }} + name: node ${{ matrix.node }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: node: ['lts/*', '8', '10', '12', '14', '16', '18', '20'] - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest] steps: - uses: actions/checkout@v2 @@ -28,10 +28,19 @@ jobs: - run: npm test - - name: Coveralls + - name: coveralls parallel uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.COVERALLS_REPO_TOKEN }} flag-name: ${{matrix.os}}-node-${{ matrix.node }} parallel: true + finish: + needs: test + runs-on: ubuntu-latest + steps: + - name: coveralls publish + uses: coverallsapp/github-action@v2 + with: + github-token: ${{ secrets.COVERALLS_REPO_TOKEN }} + parallel-finished: true