From 7f9af8865eedd523865723019cac528b62d66410 Mon Sep 17 00:00:00 2001 From: Zack Schuster Date: Tue, 28 Jul 2020 10:36:24 -0700 Subject: [PATCH] test: remove incompatible node versions --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9e9a3f9..9baf850 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [^6, ^8, ^10, ^12, ^14] + node-version: [^10, ^12, ^14] os: [ubuntu-latest, windows-latest, macos-latest] steps: @@ -22,7 +22,7 @@ jobs: node-version: ${{ matrix.node-version }} - name: install - run: yarn install --ignore-engines + run: yarn install - name: test run: yarn test