diff options
Diffstat (limited to '.github/workflows/ufuzz.yml')
-rw-r--r-- | .github/workflows/ufuzz.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/ufuzz.yml b/.github/workflows/ufuzz.yml new file mode 100644 index 00000000..9153a1ec --- /dev/null +++ b/.github/workflows/ufuzz.yml @@ -0,0 +1,24 @@ +name: Fuzzing +on: + schedule: + - cron: "*/15 * * * *" +jobs: + ufuzz: + strategy: + matrix: + os: [ ubuntu-latest, windows-latest ] + name: ${{ matrix.os }} + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v1 + - shell: bash + run: | + git clone --branch v1.5.2 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs + . ~/.nvs/nvs.sh + nvs --version + nvs add node/$NODE + nvs use node/$NODE + node --version + npm --version --no-update-notifier + npm install --no-audit --no-optional --no-save --no-update-notifier + node test/ufuzz/job 3600000 |