From 1e1bb3c6e2721c2a523e838a98c5331a999f75e1 Mon Sep 17 00:00:00 2001 From: Rifa Achrinza <25147899+achrinza@users.noreply.github.com> Date: Thu, 25 Nov 2021 18:04:29 +0800 Subject: [PATCH] ci: update Node.js versions see: https://github.com/loopbackio/cicd/issues/2 see: https://github.com/loopbackio/cicd/issues/4 Signed-off-by: Rifa Achrinza <25147899+achrinza@users.noreply.github.com> --- .github/workflows/ci.yaml | 10 +++++----- .travis.yml | 1 + 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 80ba55a..739e927 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,12 +15,12 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [10, 12, 14, 16] + node-version: [10, 12, 14, 16, 17] include: - os: macos-latest - node-version: 14 # LTS + node-version: 16 # LTS - os: windows-latest - node-version: 14 + node-version: 16 fail-fast: false runs-on: ${{ matrix.os }} steps: @@ -71,7 +71,7 @@ jobs: - name: Use Node.js 14 uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Bootstrap project run: npm ci --ignore-scripts - name: Verify code linting @@ -88,7 +88,7 @@ jobs: - name: Use Node.js 14 uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Install monorepo tools run: npm ci --ignore-scripts - name: Verify commit linting diff --git a/.travis.yml b/.travis.yml index b8752b8..b9d60c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,3 +20,4 @@ node_js: - 12 - 14 - 16 + - 17