Skip to content

Commit f6da93e

Browse files
Move security scan step into test job
The security step requires "npm install".
1 parent ee1c0c8 commit f6da93e

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,7 @@ jobs:
3434
with:
3535
fail_ci_if_error: true
3636

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 }}
37+
- name: Run Snyk to check for vulnerabilities
38+
uses: snyk/actions/node@master
39+
env:
40+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

0 commit comments

Comments
 (0)