From e4264d33017834c4d95fc55bad72268588efe43b Mon Sep 17 00:00:00 2001 From: LaskyJ Date: Thu, 17 Apr 2025 23:55:44 -0500 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index faf7205d9..51774ef58 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,19 +21,19 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: 18 - cache: "yarn" + node-version: 23 + cache: 'npm' - name: Cache node_modules uses: actions/cache@v4 with: path: node_modules - key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-node_modules-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node_modules- - name: Install dependencies - run: yarn install + run: npm install - name: Run Jest tests - run: yarn test:ci + run: npm run test:ci