We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da79640 commit b5529fdCopy full SHA for b5529fd
.github/workflows/node.js.yml
@@ -10,7 +10,7 @@ on:
10
branches: [ master ]
11
12
jobs:
13
- build:
+ test:
14
15
runs-on: ubuntu-latest
16
@@ -28,4 +28,20 @@ jobs:
28
cache: 'npm'
29
- run: npm ci
30
- run: npm run build --if-present
31
- - run: npm test && npm run test:coverage
+ - run: npm test
32
+ - name: Coveralls
33
+ uses: coverallsapp/github-action@master
34
+ with:
35
+ github-token: ${{ secrets.GITHUB_TOKEN }}
36
+ flag-name: run-${{ matrix.node-version }}Upd
37
+ parallel: true
38
+
39
+ finish:
40
+ needs: test
41
+ runs-on: ubuntu-latest
42
+ steps:
43
+ - name: Coveralls Finished
44
45
46
+ github-token: ${{ secrets.github_token }}
47
+ parallel-finished: true
0 commit comments