Bump the npm-production group in /coverage with 2 updates #29
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
| name: Smoke Test | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| test-coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: coverage/.node-version | |
| cache: npm | |
| cache-dependency-path: coverage/package-lock.json | |
| - name: Install Dependencies | |
| working-directory: ./coverage | |
| run: npm ci | |
| - name: Test | |
| working-directory: ./coverage | |
| run: npm run coverage | |
| - name: Upload coverage | |
| uses: ./coverage | |
| with: | |
| oidc: true | |
| files: coverage/coverage/clover.xml | |
| incomplete: true | |
| skip-errors: false | |
| - name: Complete coverage | |
| uses: ./coverage | |
| with: | |
| oidc: true | |
| command: complete | |
| skip-errors: false | |
| - name: Run fmt action | |
| uses: ./fmt |