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 to Node 18 runtimes #1189

Merged
merged 7 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -28,7 +28,7 @@ jobs:
${{ runner.OS }}-
- name: Install Node.js modules
run: |
npm install -g pnpm@6.2.3
npm install -g pnpm@8.9.0
pnpm recursive install --frozen-lockfile
- name: Build all workspaces
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
${{ runner.OS }}-
- name: Install Node.js modules
run: |
npm install -g pnpm@6.2.3
npm install -g pnpm@8.9.0
pnpm install --frozen-lockfile
- name: Analyze TypeScript files
run: |
Expand All @@ -53,7 +53,7 @@ jobs:
${{ runner.OS }}-
- name: Install Node.js modules
run: |
npm install -g pnpm@6.2.3
npm install -g pnpm@8.9.0
pnpm install --frozen-lockfile
- name: Analyze TypeScript files
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ on:
workflow_dispatch:
inputs:
generateDocOnly:
description: 'Generate documentation only. Unchecking this checkbox will have no impact, the documentation will still be only generated when the workflow is triggered manually.'
description: "Generate documentation only. Unchecking this checkbox will have no impact, the documentation will still be only generated when the workflow is triggered manually."
type: boolean
required: false
default: 'true'
default: "true"
push:
branches:
- 'release/v*'
- "release/v*"
jobs:
release:
name: Create Release
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
node-version: 16
- name: Install pnpm
run: |
npm install -g pnpm@6.2.3
npm install -g pnpm@8.9.0
- name: Generate Changelog
id: changelog
env:
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
node-version: 16
- name: Install pnpm
run: |
npm install -g pnpm@6.2.3
npm install -g pnpm@8.9.0
- name: Build SEA-Config-Schema project
id: build
env:
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
node-version: 16
- name: Install pnpm
run: |
npm install -g pnpm@6.2.3
npm install -g pnpm@8.9.0
- name: Build SEA-GUI project
id: build
env:
Expand Down
2 changes: 1 addition & 1 deletion buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 0.2
phases:
install:
runtime-versions:
nodejs: 16
nodejs: 18
commands:
- echo "nothing to do in install"
pre_build:
Expand Down
2 changes: 1 addition & 1 deletion deployment/build-s3-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ do_cmd cd $installer_dir
# do_cmd npm install aws-cdk@$cdk_version

# Install pnpm
do_cmd npm install -g pnpm@6.2.3
do_cmd npm install -g pnpm@8.9.0
do_cmd pnpm install

# Add local install to PATH
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
"lint:eslint": "pnpx eslint . --ext .ts,.tsx"
},
"devDependencies": {
"@types/node": "16.18.27",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-deprecation": "1.4.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "44.0.1",
"@types/node": "20.8.0",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsdoc": "46.8.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-unicorn": "47.0.0",
"prettier": "2.8.8"
"eslint-plugin-react": "7.33.2",
"eslint-plugin-unicorn": "48.0.1",
"prettier": "3.0.3"
}
}
}
Loading
Loading