fix: Enable Corepack in CI workflows to resolve Yarn version conflicts

This commit is contained in:
Damir Mukimov 2025-11-27 06:24:15 +01:00
parent 4e70fe0bb6
commit b82b9c87c2
No known key found for this signature in database
GPG Key ID: 42996CC7C73BC750
2 changed files with 6 additions and 4 deletions

View File

@ -20,6 +20,9 @@ jobs:
node-version: "20"
cache: "yarn"
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --frozen-lockfile

View File

@ -20,12 +20,11 @@ jobs:
node-version: "20"
cache: "yarn"
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Type check
run: yarn check
- name: Lint
run: yarn lint
if: always()