From 6c8cb25672dc3f18da0425dcac937cf61764a5ef Mon Sep 17 00:00:00 2001 From: Joe Workman Date: Tue, 24 Aug 2021 13:47:19 -0700 Subject: [PATCH] chore: update CI to not run node 16. Not currently functioning --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 255e769a1..c5e16052b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: build_latest_browserstack: - name: Node latest with browserstack + name: Node 14 with browserstack runs-on: ubuntu-latest strategy: matrix: @@ -24,7 +24,7 @@ jobs: run: yarn test:javascript:browserstack build_latest: - name: Node latest + name: Node 14 runs-on: ubuntu-latest strategy: matrix: @@ -44,7 +44,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest, macos-latest, windows-latest] - node: [ '12', '10', '8' ] + node: [ '12', '10'] name: Node ${{ matrix.node }} (${{ matrix.platform }}) runs-on: ${{ matrix.platform }} steps: -- 2.47.2