changing path #7
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: Test coverage for main branch | |
on: | |
push: | |
branches: | |
- main | |
- fdc3-for-web-impl | |
jobs: | |
test_and_upload_coverage: | |
runs-on: ubuntu-latest | |
name: Test and upload coverage | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.ref }} | |
fetch-depth: 1000 | |
- name: Run tests | |
run: | | |
npm i | |
npm run test | |
npm run merge | |
npm run report | |
- name: Upload coverage artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-coverage-output | |
path: nyc-coverage-report |