From c4e7acd5261f2edc01e36a3a7fb0bf83fa78d71d Mon Sep 17 00:00:00 2001 From: Victor Lin <13424970+victorlin@users.noreply.github.com> Date: Mon, 13 Mar 2023 13:31:02 -0700 Subject: [PATCH] Use Node.js 18 when publishing to NPM Node.js version here shouldn't matter since the compatible versions are specified in package.json and tested on other jobs. Doesn't hurt to use the latest supported version. --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 024a32178..db54b6520 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -81,7 +81,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 18 registry-url: https://registry.npmjs.org/ - run: node --version - run: npm ci