From 472bbe2d96e98c0b7a32121db42ee9c9b498683a Mon Sep 17 00:00:00 2001 From: Brian Smith <112954497+brian-smith-tcril@users.noreply.github.com> Date: Tue, 22 Oct 2024 13:55:44 -0400 Subject: [PATCH] Revert "test: Remove support for Node 18 (#736)" (#740) This reverts commit dc5f097736d443dfb11a70ed3be694484319e4d9. Node 18 removal PRs should be merged after Sumac is cut. --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca37c3ae0..d4b8dd034 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,9 @@ on: jobs: tests: runs-on: ubuntu-latest + strategy: + matrix: + node: [18, 20] steps: - name: Checkout @@ -18,7 +21,7 @@ jobs: - name: Setup Nodejs uses: actions/setup-node@v4 with: - node-version-file: '.nvmrc' + node-version: ${{ matrix.node }} - name: Install dependencies run: npm ci - name: Validate package-lock.json changes