We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdc50b4 commit bdbae3dCopy full SHA for bdbae3d
.github/workflows/main.yml
@@ -31,6 +31,8 @@ jobs:
31
- uses: actions/checkout@v3
32
- name: Install dependencies
33
run: npm install
34
+ - name: Check installed packages
35
+ run: npm list jest
36
- name: Run Integration Tests
37
run: npm run test:integration
38
@@ -44,7 +46,7 @@ jobs:
44
46
- name: Run Snyk Scan
45
47
env:
48
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
- run: snyk test --all-projects
49
+ run: snyk test --all-projects --severity-threshold=high --fail-on=all
50
51
deploy:
52
needs: integration-tests
0 commit comments