Skip to content

Commit

Permalink
feat: bumped yarn to v4 - fix #271
Browse files Browse the repository at this point in the history
  • Loading branch information
pagoru committed Jan 24, 2025
1 parent 98c5871 commit c1756a5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/client-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
with:
node-version: 20.x

- name: Enable Corepack
run: corepack enable

- name: Install dependencies
working-directory: ./app/client
run: yarn install --immutable
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/prettier-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ jobs:
with:
node-version: 20.x

- name: Enable Corepack
run: corepack enable

- name: Install dependencies
run: npm install
working-directory: ./app/client
run: yarn install --immutable

- name: Run Prettier check
run: npm run prettier:check
run: yarn run prettier:check
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
"version": "${{ steps.set_version.outputs.tag }}"
}
- name: Enable Corepack
run: corepack enable

- name: Install dependencies
working-directory: ./app/client
run: yarn install --immutable
Expand Down

0 comments on commit c1756a5

Please sign in to comment.