-
Notifications
You must be signed in to change notification settings - Fork 879
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update yarn to v4 and add Yarn v4 installation step
- Update the yarn version to v4 in the dependencies setup action.yml file - Add a new step to install Yarn v4 using corepack in the dependencies setup action.yml file - Update the lint and type-check commands in the boilerplate-checks.yml file to use the correct yarn scripts - Add a new step to run Prettier code formatting in the boilerplate-checks.yml file
- Loading branch information
1 parent
14c9153
commit e5c9132
Showing
2 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,9 @@ runs: | |
node-version: '20.x' | ||
cache: 'yarn' | ||
cache-dependency-path: ${{ inputs.working_directory }}/yarn.lock | ||
- name: Install Yarn v4 | ||
shell: bash | ||
run: corepack enable && corepack prepare [email protected] --activate | ||
- name: Install dependencies | ||
run: yarn install --frozen-lockfile | ||
shell: bash | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters