We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36e3883 commit 38cacd3Copy full SHA for 38cacd3
.github/actions/setup-workspace/action.yml
@@ -25,9 +25,11 @@ runs:
25
uses: actions/setup-node@v4
26
if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
27
with:
28
+ cache: npm
29
+ cache-dependency-path: '**/package-lock.json'
30
node-version: ${{ inputs.node }}
31
32
- name: Install and build 🔧
33
- run: npm ci
34
+ run: npm ci --prefer-offline --no-audit
35
shell: bash
0 commit comments