Skip to content

Commit

Permalink
Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Zay-Yan authored Feb 19, 2024
1 parent 40c438f commit 2dc39e5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/solar-system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,23 @@ jobs:
with:
name: Mocha-Test-Result
path: test-results.xml

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

0 comments on commit 2dc39e5

Please sign in to comment.