Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

Commit effceec

Browse files
committed
chore: Add the no-ci lerna option directly to the workflow command, since it does not appear to work when set in the config.
1 parent d764d82 commit effceec

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
node-version: 16.x
3636
- name: Bootstrap, build, and test
3737
run: |
38-
npx lerna bootstrap
38+
npx lerna bootstrap --no-ci
3939
npm run test
4040
4141
# If pushing on develop and we made it this far

lerna.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
{
22
"$schema": "https://json.schemastore.org/lerna.json",
33
"command": {
4-
"bootstrap": {
5-
"noCi": true,
6-
"npmClientArgs": ["--no-package-lock", "--no-audit", "--no-fund"]
7-
},
84
"version": {
95
"allowBranch": "develop",
106
"conventionalCommits": true
117
}
128
},
9+
"npmClientArgs": ["--no-package-lock", "--no-audit", "--no-fund"],
1310
"useWorkspaces": true,
1411
"version": "independent"
1512
}

0 commit comments

Comments
 (0)