From 01b561ee944595a48c21bfc2c8d6556f2d8fb449 Mon Sep 17 00:00:00 2001 From: Tom - Henry Coursow Date: Fri, 14 Jul 2023 21:43:15 +0200 Subject: [PATCH] Update .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index a982d3a..3ad089b 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -23,6 +23,11 @@ jobs: uses: actions/setup-node@v3 with: node-version: '18' + - name: Setup Chache + uses: actions/cache@v3 + with: + path: ~/.npm + key: deps-node-modules-${{ hashFiles('**/package-lock.json') }} - name: Install Dependencies run: npm ci - name: Run Tests @@ -48,6 +53,11 @@ jobs: runs-on: ubuntu-latest needs: Build steps: + - name: Setup Chache + uses: actions/cache@v3 + with: + path: ~/.npm + key: deps-node-modules-${{ hashFiles('**/package-lock.json') }} - name: Access Artifacts uses: https://github.com/actions/download-artifact@v3 with: