diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01c9e09..be420a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,10 @@ jobs: with: node-version: 22 cache: 'npm' - - name: 'npm install' - run: | - npm ci --prefer-offline --no-audit --no-fund - 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 unit-test: name: unit-tests runs-on: ubuntu-latest