From da2a4b061525bace391a9f3506c9d3b241983435 Mon Sep 17 00:00:00 2001 From: karkir0003 Date: Mon, 25 Dec 2023 13:00:38 -0500 Subject: [PATCH] cachev2 --> cachev3 upgrade" --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b78bf44..32ec965 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: node-version: 20.x - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -33,4 +33,8 @@ jobs: run: npm install - name: Build - run: npm run build \ No newline at end of file + run: npm run build + + - name: Run depcheck + run: npx depcheck --ignore-bin-package + working-directory: ./frontend \ No newline at end of file