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

Drop support for Node.js <18.18.0 #172

Merged
merged 2 commits into from
Aug 16, 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/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.12.2"
node-version: "20.16.0"
registry-url: "https://registry.npmjs.org"
- name: Set version number to environment variable
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.12.2"
node-version: "20.16.0"
- run: yarn install
- run: yarn run lint

Expand All @@ -41,9 +41,9 @@ jobs:
strategy:
matrix:
node:
- "18.12.0"
- "18.19.0"
- "20.11.0"
- "18.18.0"
- "18.20.4"
- "20.16.0"
needs:
- check_test_execution_conditions
steps:
Expand All @@ -63,7 +63,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.12.2"
node-version: "20.16.0"
- run: yarn install
- run: yarn run build
env:
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.12.2
20.16.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Qiita の Markdown 記法については[Markdown 記法 チートシート](htt

### 1. 事前準備

Qiita CLI を使うには `Node.js 18.12.0` 以上が必要です。
Qiita CLI を使うには `Node.js 18.18.0` 以上が必要です。
Node.js をはじめて使う場合はインストールする必要があります。

### 2. Qiita CLI をインストールする
Expand Down
2 changes: 1 addition & 1 deletion actions/publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
steps:
- uses: actions/setup-node@v4
with:
node-version: "20.12.2"
node-version: "20.16.0"
- name: Install qiita-cli
run: npm install -g @qiita/[email protected]
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.12.0"
"node": ">=18.18.0"
},
"lint-staged": {
"*.{js,ts,tsx}": [
Expand Down