Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

strategy:
matrix:
node-version: [22, 24]
node-version: [24]

steps:
- name: Check out Git repository
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
check-latest: true
cache: 'pnpm'
cache-dependency-path: pnpm-lock.yaml
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
check-latest: true
cache: 'pnpm'
cache-dependency-path: pnpm-lock.yaml
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
- 開発言語
- [TypeScript](https://www.typescriptlang.org/)
- JavaScriptのランタイム
- [Node.js](https://nodejs.org): v22.x
- [Node.js](https://nodejs.org): v24.x
- 汎用フレームワーク
- [Svelte](https://svelte.dev/): v5.x。Runes mode で運用中
- [SvelteKit](https://svelte.dev/): v2.x
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See:
# https://github.com/devcontainers/images/tree/main/src/javascript-node
ARG NODE_VERSION=22
ARG NODE_VERSION=24
FROM mcr.microsoft.com/devcontainers/javascript-node:${NODE_VERSION}

WORKDIR /usr/src/app
Expand Down
Loading
Loading