diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-06-09 17:02:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 00:02:05 +0800 |
commit | 45db96679ea1a4c8ce943874178a1d26ad0abc5c (patch) | |
tree | 07e01c0b85c487b1250dd28ae2dc27f65f9211f0 | |
parent | 1d15f51238559bf0c508d2eddcd0f9d70517b82b (diff) | |
download | tracifyjs-45db96679ea1a4c8ce943874178a1d26ad0abc5c.tar.gz tracifyjs-45db96679ea1a4c8ce943874178a1d26ad0abc5c.zip |
perform `ufuzz` on more stable Node.js version (#3981)
-rw-r--r-- | .github/workflows/ufuzz.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ufuzz.yml b/.github/workflows/ufuzz.yml index 6e75ef81..ef39df88 100644 --- a/.github/workflows/ufuzz.yml +++ b/.github/workflows/ufuzz.yml @@ -17,13 +17,13 @@ jobs: shell: bash run: | git clone --branch v1.5.4 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs - while ! timeout 60 bash -c '. ~/.nvs/nvs.sh add 10 && nvs use 10'; do + while ! timeout 60 bash -c '. ~/.nvs/nvs.sh add 8 && nvs use 8'; do cd ~/.nvs while !(git clean -xdf); do echo "'git clean' failed - retrying..."; done cd - done . ~/.nvs/nvs.sh --version - nvs use 10 + nvs use 8 node --version npm config set audit false npm config set optional false |