Removed caching

This commit is contained in:
Pax1601
2023-09-21 13:28:32 +02:00
parent 9db01d6060
commit e7e56d1cdb

View File

@@ -13,15 +13,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
- name: Retrieve the cached "node_modules" directory (if present)
uses: actions/cache@v2
id: node-cache
with:
path: node_modules
key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
- name: Install dependencies (if the cached directory was not found)
if: steps.node-cache.outputs.cache-hit != 'true'
- name: Install dependencies
run: npm ci
working-directory: ./client