26 lines
689 B
YAML
26 lines
689 B
YAML
name: Fuzzing
|
|
on:
|
|
schedule:
|
|
- cron: "*/15 * * * *"
|
|
jobs:
|
|
ufuzz:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ ubuntu-latest, windows-latest ]
|
|
name: ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Perform fuzzing
|
|
shell: bash
|
|
run: |
|
|
git clone --branch v1.5.3 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs
|
|
. ~/.nvs/nvs.sh --version
|
|
nvs add 10
|
|
nvs use 10
|
|
node --version
|
|
npm --version --no-update-notifier
|
|
npm install --no-audit --no-optional --no-save --no-update-notifier
|
|
node test/ufuzz/job 3600000
|