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 42e77af commit 3271858Copy full SHA for 3271858
.github/workflows/coverage.yml
@@ -10,8 +10,22 @@ jobs:
10
upload-coverage:
11
runs-on: ubuntu-latest
12
steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v4
15
+
16
+ - name: Set up Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: 20
20
21
+ - name: Install dependencies
22
+ run: npm ci
23
24
+ - name: Run tests with coverage
25
+ run: npm run test:unit -- --coverage
26
27
- name: Upload to Coveralls
- if: always()
28
uses: coverallsapp/[email protected]
29
with:
- github-token: ${{ secrets.GITHUB_TOKEN }}
30
+ github-token: ${{ secrets.GITHUB_TOKEN }}
31
+ path-to-lcov: ./coverage/lcov.info
0 commit comments