ci: remove explicit caching of node modules

This commit is contained in:
WebStreamr 2025-10-14 11:29:46 +00:00
parent 3007698b1b
commit 6f3233eefd
No known key found for this signature in database

View file

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