Skip to content

Commit

Permalink
Update build to use yarn 3.5
Browse files Browse the repository at this point in the history
Signed-off-by: Luciano Resende <[email protected]>
  • Loading branch information
lresende committed Jan 5, 2024
1 parent 8a44617 commit 03b134c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@ jobs:
/home/runner/.cache/Cypress
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
- name: Install
run: yarn install --frozen-lockfile && tsc -v
run: |
corepack prepare [email protected] --activate
yarn set version 3.5.0
yarn --version
yarn install && tsc -v
# --frozen-lockfile
lint-server:
name: Lint Server
Expand Down
2 changes: 2 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
enableImmutableInstalls: false
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.5.0.cjs

0 comments on commit 03b134c

Please sign in to comment.