-
-
Notifications
You must be signed in to change notification settings - Fork 505
31 lines (26 loc) · 768 Bytes
/
Copy pathfuzzing.yml
File metadata and controls
31 lines (26 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Property-based fuzzing
on:
schedule:
- cron: '0 3 * * *'
push:
branches: [ "main" ]
workflow_dispatch:
permissions: read-all
jobs:
fast-check-fuzzing:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
with:
node-version: 22
cache: npm
cache-dependency-path: page/package-lock.json
- name: Install dependencies
working-directory: page
run: npm ci
- name: Run property-based fuzz tests
working-directory: page
run: npm test -- --run src/utils.fuzz.test.js