Bet Keeper v2.0 #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Code Test coverage' | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.13 | |
cache: 'npm' | |
- run: npm ci | |
- name: Test Report | |
uses: ArtiomTr/jest-coverage-report-action@v2 | |
with: | |
test-script: npm run test:ci:coverage | |
coverage-file: report.json |