From 8fa12df2dddb02b31ecd728099e201b5ac979e87 Mon Sep 17 00:00:00 2001 From: merlijn Date: Sun, 22 Dec 2024 11:15:59 +0100 Subject: [PATCH] chore: add cache dependency path in FE build --- .github/workflows/build_frontend.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_frontend.yml b/.github/workflows/build_frontend.yml index bb05c6e1..cacdc486 100644 --- a/.github/workflows/build_frontend.yml +++ b/.github/workflows/build_frontend.yml @@ -22,10 +22,10 @@ jobs: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 - working-directory: web-client with: node-version: ${{ matrix.node-version }} cache: 'npm' + cache-dependency-path: web-client - run: npm ci working-directory: web-client - run: npm run build --if-present