From 1d1deee239f6a52c958d432e7f277795de40ed6f Mon Sep 17 00:00:00 2001 From: bracesproul Date: Thu, 20 Mar 2025 16:22:48 -0700 Subject: [PATCH] cr --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0ef73e..6927a91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,13 +24,19 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + + - name: Enable Corepack + run: corepack enable + - name: Use Node.js 18.x uses: actions/setup-node@v3 with: node-version: 18.x cache: "yarn" + - name: Install dependencies run: yarn install --immutable --mode=skip-build + - name: Check formatting run: yarn format:check @@ -39,13 +45,19 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + + - name: Enable Corepack + run: corepack enable + - name: Use Node.js 18.x uses: actions/setup-node@v3 with: node-version: 18.x cache: "yarn" + - name: Install dependencies run: yarn install --immutable --mode=skip-build + - name: Check linting run: yarn run lint