There was an error while loading. Please reload this page.
1 parent 38d9a7f commit c78f525Copy full SHA for c78f525
1 file changed
.github/workflows/ci-js.yml
@@ -10,5 +10,20 @@ jobs:
10
check:
11
name: Check code
12
uses: collectionspace/.github/.github/workflows/check-js.yml@main
13
- secrets:
14
- CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
+
+ upload-coverage:
15
+ name: Upload coverage report
16
+ needs: check
17
+ runs-on: ubuntu-latest
18
19
+ steps:
20
+ - name: Download coverage report artifact
21
+ uses: actions/download-artifact@v4
22
+ with:
23
+ name: coverage
24
25
+ - name: Upload to codecov
26
+ uses: codecov/codecov-action@v4
27
28
+ token: ${{ secrets.CODECOV_TOKEN }}
29
+ verbose: true
0 commit comments