We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cdfef1 commit c01ac68Copy full SHA for c01ac68
.github/workflows/fuzz_tests.yml
@@ -0,0 +1,32 @@
1
+name: facebook/react/fuzz_tests
2
+on:
3
+ schedule:
4
+ - cron: 0 * * * *
5
+ push:
6
+ branches:
7
+ - main
8
+ workflow_dispatch:
9
+ inputs:
10
+ prerelease_commit_sha:
11
+ required: false
12
+jobs:
13
+ test_fuzz:
14
+ if: inputs.prerelease_commit_sha == ''
15
+ runs-on: ubuntu-latest
16
+ env:
17
+ TZ: "/usr/share/zoneinfo/America/Los_Angeles"
18
+ steps:
19
+ - uses: actions/[email protected]
20
+ - uses: actions/setup-node@v4
21
+ with:
22
+ node-version-file: '.nvmrc'
23
+ cache: 'yarn'
24
+ - name: Install dependencies
25
+ run: yarn install --frozen-lockfile
26
27
+ ELECTRON_SKIP_BINARY_DOWNLOAD: "1"
28
+ shell: bash
29
+ - name: Run fuzz tests
30
+ run: |-
31
+ FUZZ_TEST_SEED=$RANDOM yarn test fuzz --ci
32
+ FUZZ_TEST_SEED=$RANDOM yarn test --prod fuzz --ci
0 commit comments