Compare commits

...

2 Commits

Author SHA1 Message Date
Damir Mukimov
84d567c926
fix: Add corepack enable to frontend-lint job as well
Some checks failed
CI/CD Pipeline / frontend-lint (push) Failing after 28s
CI/CD Pipeline / frontend-build (push) Has been skipped
CI/CD Pipeline / backend-lint (push) Failing after 30s
CI/CD Pipeline / backend-build (push) Has been skipped
CI/CD Pipeline / e2e-test (push) Has been skipped
2025-12-24 23:13:56 +01:00
Damir Mukimov
a80d5ddfb4
fix: Enable Corepack to install Yarn in CI workflow
- Add corepack enable step before yarn commands
- Corepack comes with Node.js and manages package managers
- Fixes 'Unable to locate executable file: yarn' error
- Required for Yarn 4 (Berry) specified in package.json
2025-12-24 23:13:45 +01:00

View File

@ -26,6 +26,8 @@ jobs:
node-version: '24'
cache: 'yarn'
cache-dependency-path: bugulma/frontend/yarn.lock
- name: Enable Corepack (for Yarn)
run: corepack enable
- name: Install dependencies
working-directory: bugulma/frontend
run: yarn install --frozen-lockfile
@ -134,6 +136,8 @@ jobs:
node-version: '24'
cache: 'yarn'
cache-dependency-path: bugulma/frontend/yarn.lock
- name: Enable Corepack (for Yarn)
run: corepack enable
- name: Install dependencies
working-directory: bugulma/frontend
run: yarn install --frozen-lockfile