Skip to content

Commit

Permalink
ci: update node.js version v20.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Mar 3, 2024
1 parent b3dc1d9 commit 97cd034
Show file tree
Hide file tree
Showing 6 changed files with 409 additions and 397 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18.x]
node-version: [20.x]
exclude:
# - os: macos-latest
# node-version: 12.x
Expand All @@ -42,7 +42,7 @@ jobs:
# - os: windows-latest
# node-version: 12.x
- os: windows-latest
node-version: 18.x
node-version: 20.x

steps:
- uses: actions/checkout@v2
Expand All @@ -62,7 +62,7 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -82,7 +82,7 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.11.0
10 changes: 1 addition & 9 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"packages": [
"packages/*"
],
"version": "5.0.2",
"command": {
"bootstrap": {
"npmClientArgs": [
"--no-package-lock"
]
}
}
"version": "5.0.2"
}
6 changes: 3 additions & 3 deletions packages/cli-core/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ module.exports = {
},
coverageThreshold: {
global: {
statements: 73.9,
branches: 73.45,
statements: 73.68,
branches: 70.93,
functions: 52.15,
lines: 73.9
lines: 73.68
}
},
};
6 changes: 3 additions & 3 deletions packages/cli/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ module.exports = {

coverageThreshold: {
global: {
statements: 92.99,
branches: 80.73,
statements: 92.29,
branches: 72.37,
functions: 83.47,
lines: 92.99
lines: 92.29
}
}
};

0 comments on commit 97cd034

Please sign in to comment.