diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 12 | ||||
-rw-r--r-- | .github/workflows/ufuzz.yml | 8 |
2 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0f1cc28b..4b2c8639 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,13 +18,13 @@ jobs: with: path: tmp key: tmp ${{ matrix.script }} - - shell: bash + - name: Perform tests + 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 + git clone --branch v1.5.3 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs + . ~/.nvs/nvs.sh --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 diff --git a/.github/workflows/ufuzz.yml b/.github/workflows/ufuzz.yml index bf307a11..0137ca88 100644 --- a/.github/workflows/ufuzz.yml +++ b/.github/workflows/ufuzz.yml @@ -12,11 +12,11 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v1 - - shell: bash + - name: Perform fuzzing + shell: bash run: | - git clone --branch v1.5.2 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs - . ~/.nvs/nvs.sh - nvs --version + git clone --branch v1.5.3 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs + . ~/.nvs/nvs.sh --version nvs add node nvs use node node --version |