From dea31a55eb0972e72b7fa3b749727bb3671a54c6 Mon Sep 17 00:00:00 2001 From: Ryunosuke Sato Date: Sun, 3 Nov 2024 00:21:45 +0900 Subject: [PATCH] Update Node.js version to 18 on CI ``` error my-app@0.0.0: The engine "node" is incompatible with this module. Expected version ">= 18". Got "16.20.2" error Found incompatible module. ``` --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8848cb1..1488b34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: - name: Install NodeJS uses: actions/setup-node@v2 with: - node-version: "16.x" + node-version: "18.x" - name: Setup Google Chrome uses: browser-actions/setup-chrome@latest