build(deps-dev): bump @biomejs/biome from 2.4.13 to 2.4.16 #226
Workflow file for this run
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: Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| unit_tests: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm test | |
| - name: Upload coverage to CodeCov | |
| uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1 | |
| with: | |
| files: test/coverage.txt | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| health-score: | |
| needs: unit_tests | |
| permissions: | |
| checks: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup repo | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - run: npm ci | |
| - run: npm run build | |
| - name: Yo dawg I heard you like healthscores so I healthscored your healthscore so you can healthscore while you healthscore | |
| uses: ./ | |
| with: | |
| codecov_token: ${{ secrets.FILS_CODECOV_API_TOKEN }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| extension: js | |
| include: src | |
| codecov_max_attempts: 10 | |
| codecov_retry_delay: 10000 | |
| codecov_treat_timeout_as_error: true |