From e993f7c4c7d82c815721dc13d3092f63bb5bb7e9 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Sun, 16 Jul 2023 20:21:03 +0200 Subject: [PATCH] Added cache dependency path --- .github/workflows/node.js.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 47783be..440b057 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -14,19 +14,14 @@ jobs: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: - path: ./ClientApp - node-version: ${{ matrix.node-version }} + node-version: 18 cache: 'npm' + cache-dependency-path: ./ClientApp/package-lock.json - name: Install working-directory: ./ClientApp run: npm ci