Skip to content

Commit

Permalink
fix(monorepo): add yarn package manager
Browse files Browse the repository at this point in the history
  • Loading branch information
pahaz committed May 11, 2024
1 parent 14945a2 commit 1ff6c78
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: install packages
run: yarn
run: |
corepack enable
yarn init -2
yarn set version stable
yarn install
- name: BUILD
run: yarn build
6 changes: 5 additions & 1 deletion .github/workflows/ci.linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: install packages
run: yarn
run: |
corepack enable
yarn init -2
yarn set version stable
yarn install
- name: BUILD
run: yarn lint
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules

0 comments on commit 1ff6c78

Please sign in to comment.