Skip to content

Commit

Permalink
chore: constrain lerna version for ci and global installs (#6804)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdholt authored Aug 11, 2023
1 parent b8b4b20 commit 9c1a0cc
Show file tree
Hide file tree
Showing 9 changed files with 1,909 additions and 1,719 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd-deploy-color-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/checkout@master

- name: Install Lerna
run: yarn global add lerna
run: yarn global add lerna@5.5.2

- name: Install package dependencies / prepare workspaces
run: yarn install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-deploy-www-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/checkout@master

- name: Install Lerna
run: yarn global add lerna
run: yarn global add lerna@5.5.2

- name: Install package dependencies / prepare workspaces
run: yarn install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-deploy-www-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
uses: actions/checkout@master

- name: Install Lerna
run: yarn global add lerna
run: yarn global add lerna@5.5.2

- name: Install package dependencies / prepare workspaces
run: yarn install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
node-version: 16.20.0

- name: Add or Update packages
run: sudo yarn global add lerna
run: sudo yarn global add lerna@5.5.2

- name: Set Git User
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing/ci-daily-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
sudo apt-get update
sudo apt-get install yarn
sudo yarn global upgrade typescript
sudo yarn global add lerna
sudo yarn global add lerna@5.5.2
- name: Install package dependencies / prepare workspaces
run: yarn install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ npm install -g yarn
The second tool you'll need is Lerna, which can be installed with this command:

```bash
yarn global add lerna
yarn global add lerna@5.5.2
```

:::important
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
"glob": "^7.1.2",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lerna": "^3.20.2",
"lerna": "^5.5.2",
"lint-staged": "^10.1.2",
"markdown-it": "^12.3.2",
"prettier": "2.0.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ npm install -g yarn
The second tool you'll need is Lerna, which can be installed with this command:

```bash
yarn global add lerna
yarn global add lerna@5.5.2
```

:::important
Expand Down
Loading

0 comments on commit 9c1a0cc

Please sign in to comment.