Skip to content

Commit 6765fec

Browse files
authored
replace order of npm ci (#371)
* replace order of npm ci * split
1 parent 4678d71 commit 6765fec

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
with:
1616
node-version: 22
1717
cache: 'npm'
18-
- name: 'npm install'
19-
run: |
20-
npm ci --prefer-offline --no-audit --no-fund
21-
npm i --prefer-offline --no-audit --no-fund # fix npm bug
18+
- name: 'npm install (fix npm bug)'
19+
run: npm i --prefer-offline --no-audit --no-fund
20+
- name: 'npm clean install'
21+
run: npm ci --prefer-offline --no-audit --no-fund
2222
unit-test:
2323
name: unit-tests
2424
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)