aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ufuzz.yml
blob: 4e067910a747b82bafa62a5e06a70b68d65e2f8a (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
      - 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