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 c61e603 commit caabdd2Copy full SHA for caabdd2
.github/workflows/code-coverage.yml
@@ -1,7 +1,7 @@
1
-on: ["push", "pull_request"]
2
-
3
name: Test Coveralls
4
+on: ["push", "pull_request"]
+
5
jobs:
6
build:
7
name: Build
@@ -14,10 +14,13 @@ jobs:
14
with:
15
node-version: 20.x
16
17
- - name: npm install, make test-coverage
+ - name: npm install, run tests with coverage
18
run: |
19
npm install
20
npm run test:coverage
21
22
- - name: Upload coverage to Coveralls
23
- uses: coverallsapp/github-action@v2.3.0
+ - name: Upload coverage to Coveralls
+ uses: coverallsapp/github-action@v2.3.0
24
+ with:
25
+ coveralls-token: ${{ secrets.COVERALLS_REPO_TOKEN }}
26
+ path-to-lcov: ./coverage/lcov.info
0 commit comments