From f7606bab4964b412cde5251752b5d2fddb665d99 Mon Sep 17 00:00:00 2001 From: Tobiah Date: Mon, 13 Jun 2022 00:18:44 -0500 Subject: [PATCH] ci: only supported node versions --- .github/workflows/ci.yaml | 2 +- .github/workflows/regression.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bdcb699..c908daa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,7 +26,7 @@ jobs: needs: lint strategy: matrix: - node-version: [12, 14, 16, 'lts/*'] + node-version: [14, 16, 'lts/*'] steps: - name: Checkout uses: actions/checkout@v2 diff --git a/.github/workflows/regression.yaml b/.github/workflows/regression.yaml index 965719d..9f2eece 100644 --- a/.github/workflows/regression.yaml +++ b/.github/workflows/regression.yaml @@ -12,12 +12,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [11.x, 12.x, 13.x, 14.x, 15.x] + node-version: [14, 16, 'lts/*'] steps: - name: Checkout uses: actions/checkout@v2 - name: Setup - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Test