chore: replace test-harness submodule with spec submodule (#1359) #938
This file contains hidden or 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
| # Generates baseline code coverage | |
| name: coverage | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| registry-url: 'https://registry.npmjs.org' | |
| node-version-file: '.nvmrc' | |
| cache: 'npm' | |
| - name: Install | |
| run: npm ci | |
| - name: Test | |
| run: npm run test | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v3 |