Skip to content

Commit 464d2b6

Browse files
committed
[static] test GHA
Signed-off-by: Itai Segall <itai.segall@digitalasset.com>
1 parent c3d4d5a commit 464d2b6

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/snyk-test.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on:
2+
pull_request:
3+
types: [opened, synchronize, reopened]
4+
5+
jobs:
6+
node_snyk_test:
7+
runs-on: self-hosted-docker-small
8+
steps:
9+
- name: Check out repository code
10+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
11+
- name: Run Snyk to check for vulnerabilities
12+
uses: snyk/actions/node@4a528b5c534bb771b6e3772656a8e0e9dc902f8b
13+
env:
14+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
15+
16+
python_snyk_test:
17+
runs-on: self-hosted-docker-small
18+
steps:
19+
- name: Check out repository code
20+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21+
- name: Run Snyk to check for vulnerabilities
22+
uses: snyk/actions/python@4a528b5c534bb771b6e3772656a8e0e9dc902f8b
23+
env:
24+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

0 commit comments

Comments
 (0)