Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Node.js from v18.19 to LTS v20.18 #586 #587

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup node environment (for building)
uses: actions/setup-node@v4
with:
node-version: 18.19
node-version: 20.18

- name: Fetch dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/capture-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Setup node environment
uses: actions/setup-node@v4
with:
node-version: 18.12
node-version: 20.18
# don't use cache as it may interfere with other jobs
# cache: npm

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Setup node environment (for building)
uses: actions/setup-node@v4
with:
node-version: 18.19
node-version: 20.18
cache: yarn

- name: Fetch dependencies
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
- name: Setup node environment (for building)
uses: actions/setup-node@v4
with:
node-version: 18.19
node-version: 20.18
cache: yarn

- name: Fetch dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-versioned-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Setup node environment
uses: actions/setup-node@v4
with:
node-version: 18.19
node-version: 20.18
cache: yarn

- name: Bump new version
Expand Down
15 changes: 14 additions & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
module.exports = {
...require('@okp4/eslint-config/.prettierrc.js'),
printWidth: 100,
tabWidth: 2,
semi: false,
singleQuote: true,
trailingComma: 'none',
ccamel marked this conversation as resolved.
Show resolved Hide resolved
bracketSpacing: true,
jsxBracketSameLine: false,
arrowParens: 'avoid',
ccamel marked this conversation as resolved.
Show resolved Hide resolved
proseWrap: 'preserve',
jsxSingleQuote: false,
useTabs: false,
htmlWhitespaceSensitivity: 'css',
endOfLine: 'auto',
ccamel marked this conversation as resolved.
Show resolved Hide resolved
quoteProps: 'as-needed',
overrides: [
{
files: ['**/*.scss'],
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"web": "https://axone.xyz"
},
"engines": {
"node": "^18.0",
"node": "^20.18",
"yarn": "~1.22.17"
},
"scripts": {
Expand Down Expand Up @@ -64,7 +64,6 @@
"@docusaurus/module-type-aliases": "^3.5.2",
"@docusaurus/types": "^3.5.2",
"@nivo/line": "^0.87.0",
"@okp4/eslint-config": "^2.0.0",
"docusaurus-plugin-drawio": "^0.4.0",
"graphviz-react": "^1.2.5",
"markdownlint-cli": "^0.41.0",
Expand Down
Loading
Loading