From 2a7752ba3b594001eac761d177205ab244420fe4 Mon Sep 17 00:00:00 2001 From: Vladimir Dementyev Date: Tue, 21 May 2024 16:05:25 -0700 Subject: [PATCH] ci: test against multiple node version --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9abb889..4719227 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,13 +9,17 @@ env: jobs: test: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + node: ["18", "20", "22"] steps: - name: Checkout the repository uses: actions/checkout@v2 - name: Install Node.js uses: actions/setup-node@v2 with: - node-version: 19 + node-version: ${{ matrix.node }} - name: Install dependencies uses: bahmutov/npm-install@v1 with: