Compare commits

..

1 Commits

Author SHA1 Message Date
t.behrendt 2e051da7c0 ci: include runner arch in npm dep cache key
CI / Dry-Run (pull_request) Successful in 2s
CI / Test (pull_request) Successful in 11s
CI / Check Dist (pull_request) Successful in 3m26s
2026-08-09 19:52:15 +02:00
+2 -2
View File
@@ -28,7 +28,7 @@ jobs:
with:
path: |
node_modules
key: ${{ runner.os }}-${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
key: ${{ runner.os }}-${{ runner.arch }}-npm-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.cache-deps.outputs.cache-hit != 'true'
run: npm ci
@@ -53,7 +53,7 @@ jobs:
with:
path: |
node_modules
key: ${{ runner.os }}-${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
key: ${{ runner.os }}-${{ runner.arch }}-npm-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.cache-deps.outputs.cache-hit != 'true'
run: npm ci