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 8c8dafa commit 2505440Copy full SHA for 2505440
.github/workflows/ci.yml
@@ -7,7 +7,8 @@
7
name: CI
8
on: [push, pull_request]
9
jobs:
10
- test:
+ build:
11
+ name: Build
12
runs-on: ubuntu-latest
13
timeout-minutes: 10
14
strategy:
@@ -27,5 +28,13 @@ jobs:
27
28
run: |
29
npm run build --if-present
30
npm test
31
+ npm run coverage
32
env:
33
CI: true
34
+ - name: Coveralls GitHub Action
35
+ uses: coverallsapp/github-action@v2.2.3
36
+ with:
37
+ github-token: ${{ secrets.COVERALLS_REPO_TOKEN }}
38
+ flag-name: node-${{ matrix.node-version }}
39
+ parallel: true
40
+
0 commit comments