diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bf7887a..1de63b9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,7 +24,12 @@ jobs: node-version-file: .nvmrc - name: Install dependencies - run: npm ci + run: | + if [ -f package-lock.json ]; then + npm ci --no-audit --no-fund + else + npm install --no-audit --no-fund + fi - name: Lint run: npm run lint