We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4678d71 commit 6765fecCopy full SHA for 6765fec
1 file changed
.github/workflows/ci.yml
@@ -15,10 +15,10 @@ jobs:
15
with:
16
node-version: 22
17
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
+ - name: 'npm install (fix npm bug)'
+ run: npm i --prefer-offline --no-audit --no-fund
+ - name: 'npm clean install'
+ run: npm ci --prefer-offline --no-audit --no-fund
22
unit-test:
23
name: unit-tests
24
runs-on: ubuntu-latest
0 commit comments