aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ufuzz.yml
blob: bf307a11f6809a9f8ed5fcd8934542e0f8d9fac1 (about) (plain)
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
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
      - 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
          nvs use node
          node --version
          npm --version --no-update-notifier
          npm install --no-audit --no-optional --no-save --no-update-notifier
          node test/ufuzz/job 3600000