fix: suppress Snyk hardcoded-secret false positive in bundler test fixtures #232
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: 'TS SDK - Unit Testing' | |
| on: | |
| pull_request: | |
| branches: | |
| - development | |
| - main | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| checks: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run unit tests with coverage | |
| uses: ArtiomTr/jest-coverage-report-action@v2 | |
| id: coverage | |
| with: | |
| test-script: npm run test:unit | |
| threshold: 95 |