From 293941f1f6604e6426b2edb785ac16bef2aabcc6 Mon Sep 17 00:00:00 2001 From: xhad Date: Tue, 12 Dec 2023 14:57:41 -0500 Subject: [PATCH] chore: Update container --- .github/workflows/tests.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 847d3b8..89467c7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ on: jobs: tests: name: Matchstick - runs-on: macos-latest + runs-on: ubuntu-latest container: node:18 services: @@ -32,17 +32,16 @@ jobs: uses: actions/setup-node@v4 with: node-version: 18 - cache: "npm" - cache-dependency-path: ./package-lock.json + cache: "yarn" - name: Install dependencies - run: npm install --frozen-lockfile + run: yarn install --frozen-lockfile - name: Run codegen - run: npm run codegen + run: yarn codegen - name: Run build - run: npm run build:local + run: yarn build:local - name: Run tests - run: npm test + run: yarn test