From f3ee222f5c6a3d82ca09ac3a6cb8a32eb6f7de68 Mon Sep 17 00:00:00 2001 From: xhad Date: Tue, 12 Dec 2023 14:52:43 -0500 Subject: [PATCH] chore: Format --- .github/workflows/tests.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 02fc832..847d3b8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,17 +31,18 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 18.x - cache: "yarn" + node-version: 18 + cache: "npm" + cache-dependency-path: ./package-lock.json - name: Install dependencies - run: yarn install --frozen-lockfile + run: npm install --frozen-lockfile - name: Run codegen - run: yarn codegen + run: npm run codegen - name: Run build - run: yarn build:local + run: npm run build:local - name: Run tests - run: yarn test + run: npm test