From 12387f8ec3c2db202fafbd9ac445810d88742e67 Mon Sep 17 00:00:00 2001 From: Nate Meyer <672246+notnmeyer@users.noreply.github.com> Date: Thu, 18 Jan 2024 09:12:32 -0800 Subject: [PATCH] chore(ci): test on more node versions (#2668) --- .github/workflows/test.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 200e6c4593..727c75003e 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -10,11 +10,16 @@ on: jobs: build: runs-on: ubuntu-latest-16-core + strategy: + matrix: + node_version: [16, 18] # todo: get 20 passing + env: + YARN_IGNORE_NODE: 1 # silence node 16 complaints steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: ${{ matrix.node_version }} cache: yarn - name: Install Task