From c5c32d6d671dbfd723e3eb9e7e7a35e919feff7a Mon Sep 17 00:00:00 2001 From: SnowCait Date: Mon, 13 Apr 2026 03:18:07 +0900 Subject: [PATCH 1/4] Node.js v24 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 0e9eda6..9b98a01 100644 --- a/action.yml +++ b/action.yml @@ -11,7 +11,7 @@ inputs: required: true default: 'qrcode.png' runs: - using: 'node20' + using: 'node24' main: 'dist/index.js' branding: icon: 'grid' From eeb40885a80496e731a028096f9cb399f409de8e Mon Sep 17 00:00:00 2001 From: SnowCait Date: Mon, 13 Apr 2026 03:18:17 +0900 Subject: [PATCH 2/4] Node.js v24 in dev environment --- compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index d5b4f71..09440a0 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,6 +1,6 @@ services: node: - image: node:20 + image: node:24 volumes: - .:/app working_dir: /app From 63dfc68efa59b653264589d21c67a63328f26447 Mon Sep 17 00:00:00 2001 From: SnowCait Date: Mon, 13 Apr 2026 03:18:37 +0900 Subject: [PATCH 3/4] Ignore build artifacts --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 28ed554..7760111 100644 --- a/.gitignore +++ b/.gitignore @@ -63,3 +63,6 @@ typings/ # next.js build output .next + +# Artifacts +*.svg From bd743f8f71e2d1d6189320b6fdb22641e77a24df Mon Sep 17 00:00:00 2001 From: SnowCait Date: Mon, 13 Apr 2026 03:21:41 +0900 Subject: [PATCH 4/4] Contributing document --- CONTRIBUTING.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..aef3266 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,21 @@ +# Contributing + +Welcome discussions, issues and PRs. + +## Development + +```shell +npm install +``` + +### Docker + +While not required, you can also use [compose.yaml](compose.yaml) to execute commands. + +```shell +docker compose run --rm node npm install +``` + +## Release + +Execute [version-up.yml](.github/workflows/version-up.yml) which includes building package and updating version.