diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 894ae7faf14ee3..61d46522d73724 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ concurrency: env: # Currently no way to detect automatically (#8153) DEFAULT_BRANCH: main - NODE_VERSION: 14 + NODE_VERSION: 16 DRY_RUN: true jobs: @@ -38,7 +38,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [14, 16] + node-version: [14, 16, 18] # skip macOS and Windows test on pull requests without 'ci:fulltest' label include: >- ${{ fromJSON((github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'ci:fulltest')) && '[{ @@ -50,7 +50,7 @@ jobs: }]' || '[]') }} env: - coverage: ${{ matrix.os == 'ubuntu-latest' && (matrix.node-version == 14 || matrix.node-version == 16) }} + coverage: ${{ matrix.os == 'ubuntu-latest' && (matrix.node-version == 16 || matrix.node-version == 18) }} NODE_VERSION: ${{ matrix.node-version }} steps: diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index ec22377321bcc1..c03fee893d1990 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -18,7 +18,7 @@ on: required: false env: - NODE_VERSION: 14 + NODE_VERSION: 16 GIT_SHA: ${{ github.event.client_payload.sha }} NPM_VERSION: ${{ github.event.client_payload.version }} NPM_TAG: ${{ github.event.client_payload.tag }}