From 431f531065cf4001c6b39f2ea67a77f59577f9de Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Wed, 10 Nov 2021 18:41:38 -0500 Subject: [PATCH] CI: bump top Node.js version to 17, which is now stable --- .github/workflows/ci.yml | 4 ++-- .github/workflows/publish.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index db0d5f5..8622b3a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: matrix: node-version: # Align the top Node version here with: 1. linter conditions later below, 2. publish.yml. - - 16.x + - 17.x # Bumping the minimum required Node version? You must bump: # 1. package.json -> engines.node # 2. package.json -> devDependencies.@types/node @@ -35,6 +35,6 @@ jobs: # Will also (through `prepare` hook): 1. install ./app, and 2. build - run: npm ci --no-fund # Only run linter once, for faster CI. Align the versions of Node here with above and publish.yml. - - if: matrix.platform == 'ubuntu-latest' && matrix.node-version == '16.x' + - if: matrix.platform == 'ubuntu-latest' && matrix.node-version == '17.x' run: npm run lint - run: npm test diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2240a43..1205574 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/setup-node@v1 with: # Align the version of Node here with ci.yml. - node-version: '16.x' + node-version: '17.x' registry-url: 'https://registry.npmjs.org' # Will also (through `prepare` hook): 1. install ./app, and 2. build - run: npm ci --no-fund