diff options
author | Aleksey Kladov <[email protected]> | 2020-03-16 17:05:01 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-03-16 17:05:01 +0000 |
commit | 78879851bbcbce1e49fd1d831d72bb83207c2779 (patch) | |
tree | 78a808062bc395cd7fa072f40de451d9eb6e11dd /.github/workflows | |
parent | baf10c3f1695879849afc2216333571910f3aa08 (diff) |
Actually make npm audit more robust
In bash, && and || have the same priority.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b3137477d..dbfa85b20 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml | |||
@@ -121,7 +121,7 @@ jobs: | |||
121 | - run: npm ci | 121 | - run: npm ci |
122 | working-directory: ./editors/code | 122 | working-directory: ./editors/code |
123 | 123 | ||
124 | - run: npm audit || sleep 10 && npm audit || sleep 30 && npm audit | 124 | - run: npm audit || { sleep 10 && npm audit; } || { sleep 30 && npm audit; } |
125 | working-directory: ./editors/code | 125 | working-directory: ./editors/code |
126 | 126 | ||
127 | - run: npm run lint | 127 | - run: npm run lint |