Skip to content

Commit

Permalink
fix: run lerna repair command
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Buceta <[email protected]>
  • Loading branch information
frbuceta committed Jun 28, 2023
1 parent 7497c40 commit fe72763
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 16 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ jobs:
with:
node-version: 18 # LTS
- name: Install dependencies
run: npm ci --ignore-scripts
run: npm ci
- name: Build
run: npx lerna run build --scope "@loopback/benchmark"
run: npm run build -w "@loopback/benchmark"
- name: Run benchmark tests
run: npx lerna run test --scope "@loopback/benchmark" -- --ignore-scripts -- --reporter spec
run: npm run test --ignore-scripts -w "@loopback/benchmark" -- --reporter spec

code-lint:
name: Code Lint
Expand All @@ -92,7 +92,7 @@ jobs:
with:
node-version: 18 # LTS
- name: Install dependencies
run: npm ci --ignore-scripts
run: npm ci
- name: Build
run: node packages/build/bin/compile-package -b
- name: Verify code linting
Expand All @@ -116,7 +116,7 @@ jobs:
with:
node-version: 18 # LTS
- name: Install dependencies
run: npm ci --ignore-scripts
run: npm ci
- name: Verify commit linting
run: npx commitlint --from origin/master --to HEAD --verbose

Expand All @@ -129,7 +129,7 @@ jobs:
with:
node-version: 18 # LTS
- name: Install dependencies
run: npm ci --ignore-scripts
run: npm ci
- name: Build
run: node packages/build/bin/compile-package -b
- name: Verify linting
Expand Down
6 changes: 3 additions & 3 deletions fixtures/tsdocs-monorepo/lerna.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"$schema": "../../node_modules/lerna/schemas/lerna-schema.json",
"command": {
"run": {
"loglevel": "warn",
"concurrency": 8,
"prefix": false,
"loglevel": "silent",
"stream": true,
"concurrency": 8,
"sort": true
}
},
"useWorkspaces": true,
"version": "independent"
}
6 changes: 3 additions & 3 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"command": {
"bootstrap": {
"concurrency": 4,
Expand All @@ -10,18 +11,17 @@
"conventionalCommits": true
},
"run": {
"loglevel": "silent",
"loglevel": "warn",
"concurrency": 8,
"prefix": false,
"stream": true,
"sort": false
},
"clean": {
"loglevel": "silent",
"loglevel": "warn",
"concurrency": 8,
"yes": true
}
},
"useWorkspaces": true,
"version": "independent"
}
6 changes: 2 additions & 4 deletions packages/cli/test/fixtures/copyright/monorepo/lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"lerna": "3.3.0",
"packages": [
"packages/*"
],
"$schema": "../../../../../../node_modules/lerna/schemas/lerna-schema.json",
"packages": ["packages/*"],
"version": "independent"
}

0 comments on commit fe72763

Please sign in to comment.