Skip to content

Commit

Permalink
code-coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
mu7med authored Dec 31, 2023
1 parent 78d74e2 commit 05a926f
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/solar-system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,20 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: Mocha-Test-Result
path: test-results.xml
path: test-results.xml

code-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
- continue-on-error: true
run: npm run coverage
- uses: actions/upload-artifact@v3
with:
name: Code-Coverage-Result
path: coverage
retention-days: 5

0 comments on commit 05a926f

Please sign in to comment.