From 89c3819d414b1ebff0f1e3e4e702c93bd46a4d8d Mon Sep 17 00:00:00 2001 From: Raymond Zhao <7199958+rzhao271@users.noreply.github.com> Date: Mon, 3 Feb 2025 14:55:22 -0800 Subject: [PATCH] Fix ci --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aed40b1e..6bf96280 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - name: Cache node modules id: cacheNodeModules - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-cacheNodeModules2-${{ hashFiles('**/package-lock.json', '**/package.json') }} @@ -65,7 +65,7 @@ jobs: - name: Install website node modules working-directory: website - run: npm ci + run: npm i - name: Build website working-directory: website