From cdfabe50e99ba11e1610fe1901a3a2d4761b9b50 Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Tue, 24 Aug 2021 14:38:57 -0700 Subject: [PATCH] Revert "chore: update CI to not run node 16. Not currently functioning" This reverts commit 640afb49041e350fa986307053870bc44fa66188. --- .github/workflows/main.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c5e16052b..9f7424220 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,11 +4,9 @@ on: [push, pull_request] jobs: build_latest_browserstack: - name: Node 14 with browserstack + name: Node latest with browserstack runs-on: ubuntu-latest - strategy: - matrix: - node-version: [14.x] # latest (16) not functional + container: node:latest steps: - uses: actions/checkout@v1 - name: install system dependencies @@ -24,11 +22,9 @@ jobs: run: yarn test:javascript:browserstack build_latest: - name: Node 14 + name: Node latest runs-on: ubuntu-latest - strategy: - matrix: - node-version: [14.x] # latest (16) not functional + container: node:current steps: - uses: actions/checkout@v1 - name: install system dependencies @@ -44,7 +40,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest, macos-latest, windows-latest] - node: [ '12', '10'] + node: [ '12', '10', '8' ] name: Node ${{ matrix.node }} (${{ matrix.platform }}) runs-on: ${{ matrix.platform }} steps: -- 2.47.2