We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a504cd commit ee1c0c8Copy full SHA for ee1c0c8
.github/workflows/tests.yml
@@ -28,9 +28,19 @@ jobs:
28
- run: npm install
29
- run: npm run lint
30
- run: npm run test
31
- - run: npx snyk test
32
33
- name: Upload test coverage report to Codecov
34
uses: codecov/codecov-action@v1
35
with:
36
fail_ci_if_error: true
+
37
+ security:
38
+ runs-on: ubuntu-latest
39
40
+ steps:
41
+ - uses: actions/checkout@v2
42
43
+ - name: Run Snyk to check for vulnerabilities
44
+ uses: snyk/actions/node@master
45
+ env:
46
+ SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
0 commit comments