Skip to content

Commit c72ff26

Browse files
committed
add fuzz.yml for CI
1 parent aa8bc4c commit c72ff26

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/fuzz.yml

+23
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)