diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62f4db21..efcce452 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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