From b0e4a10b3ecb9ded82fe4212fcd9bcc46507c0a1 Mon Sep 17 00:00:00 2001 From: Cory Sanin Date: Tue, 2 Sep 2025 00:21:14 -0500 Subject: [PATCH] node version matrix --- .github/workflows/test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 46e7cc3..fdcb03a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,6 +14,12 @@ jobs: timeout-minutes: 20 strategy: fail-fast: true + matrix: + nodever: + [ + 'latest', + 'lts/*' + ] permissions: contents: read @@ -23,6 +29,9 @@ jobs: - name: Setup nodejs uses: https://github.com/actions/setup-node@v4 + with: + node-version: "${{ matrix.nodever }}" + check-latest: true - name: Install dependencies run: npm ci