try caching the NPM packages
All checks were successful
/ build (push) Successful in 1m40s

This commit is contained in:
Christoph Haas 2025-12-27 00:49:55 +01:00
parent 5c452cb495
commit 395a187b36

View file

@ -16,6 +16,14 @@ jobs:
with:
node-version: "22"
- name: Cache node modules
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm ci