We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa8bc4c commit c72ff26Copy full SHA for c72ff26
1 file changed
.github/workflows/fuzz.yml
@@ -0,0 +1,23 @@
1
+# https://gitlab.com/gitlab-org/security-products/analyzers/fuzzers/jsfuzz
2
+
3
+name: Fuzz
4
5
+on:
6
+ push:
7
+ branches:
8
+ - main
9
+ pull_request:
10
11
+jobs:
12
+ fuzzing:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - name: Setup Node.js
18
+ uses: actions/setup-node@v1
19
+ with:
20
+ node-version: "16"
21
22
+ - run: npm ci
23
+ - run: npm run test:fuzz
0 commit comments