Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a729071
chore: bump minimum Node.js version to v20
tasshi-me Oct 6, 2025
3e7b037
build: bump node version in mise
tasshi-me Oct 16, 2025
dc7e82f
build: add script to build SEA
tasshi-me Oct 16, 2025
768d84d
Revert "build: add script to build SEA"
tasshi-me Oct 16, 2025
98915df
build: replace vercel/pkg with yao-pkg/pkg
tasshi-me Oct 16, 2025
ffce295
chore: remove polyfill for node18 test codes
tasshi-me Oct 16, 2025
a0b942b
Merge remote-tracking branch 'origin/main' into chore/bump-nodejs-ver…
tasshi-me Oct 16, 2025
a8ce3b3
chore: use import attributes instead of import assertion
tasshi-me Oct 16, 2025
a80f409
test: remove incorrect import
tasshi-me Oct 16, 2025
ceaae5c
ci: change allure result asset name
tasshi-me Oct 16, 2025
7f203c4
ci: refactor node-version matrix
tasshi-me Oct 16, 2025
4e55db2
test: fix E2E test expected value
tasshi-me Oct 16, 2025
27cf4f3
Merge remote-tracking branch 'origin/main' into chore/bump-nodejs-ver…
tasshi-me Oct 17, 2025
89188da
ci: refactor node-version
tasshi-me Oct 17, 2025
d48faff
ci: fix a ci syntax error
tasshi-me Oct 17, 2025
16b9c7f
ci: add test for executables
tasshi-me Oct 17, 2025
e0a32fd
build: disable build compression
tasshi-me Oct 17, 2025
8e59356
debug: change build platform
tasshi-me Oct 17, 2025
599f990
Revert "debug: change build platform"
tasshi-me Oct 17, 2025
7408bd9
build: set build target arch explicitly
tasshi-me Oct 17, 2025
8f6246f
Reapply "debug: change build platform"
tasshi-me Oct 17, 2025
4e0e2fb
build: use macos runner to build executables
tasshi-me Oct 17, 2025
d7210e2
test: fix executable file path
tasshi-me Oct 17, 2025
0119907
ci: fix test-executables workflow
tasshi-me Oct 17, 2025
308d198
test: fix e2e test
tasshi-me Oct 17, 2025
ec1bfda
Merge remote-tracking branch 'origin/main' into chore/bump-nodejs-ver…
tasshi-me Oct 24, 2025
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
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
name: Node.js ubuntu-latest 18.x
name: Build
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ubuntu上でビルドしたmacOS向けの実行ファイルが正常に動作しない不具合がある。
そのため、当面の間はmacOSランナー上で実行ファイルをビルドする。
ref. yao-pkg/pkg#183

runs-on: ubuntu-latest
steps:
- uses: Kesin11/actions-timeline@3046833d9aacfd7745c5264b7f3af851c3e2a619 # v2
Expand All @@ -19,8 +19,7 @@ jobs:

- uses: actions/setup-node@v5
with:
node-version: "18"
cache: "pnpm"
node-version: "24"

- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand All @@ -42,8 +41,7 @@ jobs:

- uses: actions/setup-node@v5
with:
node-version: "18"
cache: "pnpm"
node-version: "24"

- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,9 @@ jobs:

- uses: pnpm/action-setup@v3

- name: Use Node.js 18.x
uses: actions/setup-node@v5
- uses: actions/setup-node@v5
with:
node-version: 18.x
cache: "pnpm"
node-version: "24"

- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
lint:
name: Node.js ubuntu-latest 18.x
name: Lint
runs-on: ubuntu-latest
steps:
- uses: Kesin11/actions-timeline@3046833d9aacfd7745c5264b7f3af851c3e2a619 # v2
Expand All @@ -20,8 +20,7 @@ jobs:

- uses: actions/setup-node@v5
with:
node-version: "18"
cache: "pnpm"
node-version: "24"

- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ jobs:
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v5
with:
node-version: "18"
cache: "pnpm"
node-version: "24"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- run: pnpm build:artifacts
Expand Down Expand Up @@ -92,8 +91,7 @@ jobs:
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v5
with:
node-version: "18"
cache: "pnpm"
node-version: "24"
registry-url: "https://registry.npmjs.org"
# Ensure npm 11.5.1 or later is installed
# ref. https://docs.npmjs.com/trusted-publishers#github-actions-configuration
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/test-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ jobs:
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v5
with:
node-version: "18"
cache: "pnpm"
node-version: "24"

- run: pnpm install --frozen-lockfile
- run: pnpm build
Expand All @@ -34,7 +33,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [22.x, 20.x, 18.x]
node-version: [20.x, 22.x, 24.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/setup-node@v5
Expand All @@ -52,7 +51,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [22.x, 20.x, 18.x]
node-version: [20.x, 22.x, 24.x]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/setup-node@v5
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
node-version: [18.x]
node-version: [20.x, 22.x, 24.x]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand All @@ -26,7 +26,6 @@ jobs:
- uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"

- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand Down Expand Up @@ -72,15 +71,14 @@ jobs:
strategy:
max-parallel: 1
matrix:
node-version: [18.x]
node-version: [24.x]
os: ${{ fromJSON(needs.get-running-os-for-test-e2e.outputs.os) }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- run: pnpm build:executables
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yamory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: actions/setup-node@v5
with:
node-version: "18"
node-version: "24"

- name: download and validate Yamory script
working-directory: /tmp
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
},
"homepage": "https://github.com/kintone/cli-kintone/#readme",
"engines": {
"node": ">=18"
"node": ">=20"
},
"devDependencies": {
"@actions/core": "^1.11.1",
Expand Down
Loading