From 0e661f8c6f4b5acad74724f679742e40455523be Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Fri, 15 Aug 2025 19:51:31 -0400 Subject: [PATCH] Website CI: Cache node_modules --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1af1da9e3..9cf6e552b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -97,6 +97,12 @@ jobs: with: dotnet-version: "8.x.x" + - name: Cache node modules + uses: actions/cache@v4 + with: + path: node_modules + key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }} + - name: Build Website run: | python build.py