From 40826cb3e6e1218660fd2e6c0dd64d33d119a391 Mon Sep 17 00:00:00 2001 From: Tadas Krivickas Date: Tue, 19 Dec 2023 13:29:17 +0200 Subject: [PATCH] Attempt to fix macos build --- .github/workflows/lint.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 729c829f..a866fe66 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -5,12 +5,13 @@ on: [pull_request, push] jobs: lint: name: Lint - runs-on: ubuntu-latest + runs-on: macos-12 steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: 18 - - run: yarn + cache: "yarn" + - run: yarn install --frozen-lockfile - run: yarn lint