From 8edeba2fcf5b175ff2d7be82b63e556f5cf43a68 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 27 Jan 2026 09:58:59 +0000 Subject: [PATCH] ci: upgrade Node.js version to 20 in build-demo workflow The build-demo workflow was failing because it used Node.js 16, which is no longer supported by modern JavaScript tools like Vitest 4 and ESLint 9. This commit upgrades the node-version to 20, aligning it with other workflows in the repository. Co-authored-by: tushuhei <734905+tushuhei@users.noreply.github.com> --- .github/workflows/build-demo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-demo.yml b/.github/workflows/build-demo.yml index 61c8ec5e..9d595c28 100644 --- a/.github/workflows/build-demo.yml +++ b/.github/workflows/build-demo.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 with: - node-version: '16' + node-version: '20' - run: npm install working-directory: ./javascript - run: npm install