From f7462b187aa86fe7bed3ab3a794360d5c77e3543 Mon Sep 17 00:00:00 2001 From: Northern Man <19808920+NorthernMan54@users.noreply.github.com> Date: Tue, 19 Sep 2023 08:59:08 -0400 Subject: [PATCH] Update test.yml and temporarily remove Node 20 --- .github/workflows/test.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 81664157f..d8a03a820 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,25 +7,19 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: [18.x, 20.x] + node-version: [18.x] include: - os: macos-latest node-version: 18.x - - os: macos-latest - node-version: 20.x - os: windows-2019 node-version: 18.x - - os: windows-2019 - node-version: 20.x - os: windows-latest node-version: 18.x - - os: windows-latest - node-version: 20.x runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }}