Skip to content

Commit 4678d71

Browse files
authored
add npm i after npm ci (#370)
* add npm i after npm ci * add flags
1 parent 6deeb8b commit 4678d71

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
node-version: 22
1717
cache: 'npm'
1818
- name: 'npm install'
19-
run: npm ci --prefer-offline --no-audit --no-fund
19+
run: |
20+
npm ci --prefer-offline --no-audit --no-fund
21+
npm i --prefer-offline --no-audit --no-fund # fix npm bug
2022
unit-test:
2123
name: unit-tests
2224
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)