diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-04-21 19:58:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-22 02:58:02 +0800 |
commit | 925a0ca1a04c5c50f80378ce3f8f3c8a6c81d8b4 (patch) | |
tree | 1bd054f91b287eaea6be18aa8ff8513b1ffed449 /.github | |
parent | b694bfa3515b28146bc90f4b1b3e2ef18a4b9fd3 (diff) | |
download | tracifyjs-925a0ca1a04c5c50f80378ce3f8f3c8a6c81d8b4.tar.gz tracifyjs-925a0ca1a04c5c50f80378ce3f8f3c8a6c81d8b4.zip |
adjust `ufuzz` schedule (#3807)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ufuzz.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ufuzz.yml b/.github/workflows/ufuzz.yml index a750a9fe..4387a988 100644 --- a/.github/workflows/ufuzz.yml +++ b/.github/workflows/ufuzz.yml @@ -1,7 +1,7 @@ name: Fuzzing on: schedule: - - cron: "*/5 * * * *" + - cron: "*/7 * * * *" jobs: ufuzz: strategy: @@ -31,4 +31,4 @@ jobs: npm config set update-notifier false npm --version while !(npm install); do echo "'npm install' failed - retrying..."; done - node test/ufuzz/job 2700000 + node test/ufuzz/job 3600000 |