From 2699abddaa31f4580101a1604fca5c4e0e1d622d Mon Sep 17 00:00:00 2001 From: Ron S Date: Fri, 11 Jun 2021 14:05:46 -0400 Subject: [PATCH] ci: Adjust node versions for latest supported --- .github/workflows/main.yml | 6 +++--- .github/workflows/publish.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a57c533f..c1b69cb3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,14 +1,14 @@ name: Node.js CI -on: [push, pull_request] +on: [ push, pull_request ] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, windows-latest] - node-version: [10.x, 12.x, 14.x] + os: [ ubuntu-latest, windows-latest ] + node-version: [ 12.x, 14.x, 16.x ] steps: - name: Checkout diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0ba91bfb..4722b4ae 100755 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,10 +25,10 @@ jobs: restore-keys: | ${{ runner.os }}-yarn- - - name: Setup Node.js 12.x to publish to npmjs.org + - name: Setup Node.js 14.x to publish to npmjs.org uses: actions/setup-node@v1 with: - node-version: '12.x' + node-version: '14.x' registry-url: 'https://registry.npmjs.org' - name: Install Packages