Report Code Coverage #200
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: Report Code Coverage | |
on: | |
schedule: | |
- cron: '15 18 * * 5' # weekly, on Friday night | |
env: | |
SW_DISABLED: true | |
COVERAGE: true | |
CC_TEST_REPORTER_ID: 8c510ad3aa4b1a2a3d504dfdbcc5605e7966c019dc1e9b68a815de50b946ebc6 | |
jobs: | |
test: | |
name: Test and Calculate Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.17 | |
cache: 'npm' | |
- name: install dependencies | |
run: npm ci | |
- name: calculate | |
uses: paambaati/[email protected] | |
with: | |
coverageCommand: npm run test:ember |