From 72e250889b784d15b0103dd20acb9c36cae5ab53 Mon Sep 17 00:00:00 2001 From: Sonny Piers Date: Fri, 20 Dec 2024 15:33:50 +0100 Subject: [PATCH] f --- .github/workflows/CI.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2a23929d..fe4bb99f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -11,19 +11,19 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [ - # Do not support --experimental-require-module - # Commented until we have a solution to run tests without it - # 14.x, - # 16.x, - # 18.x, - 20.x, - 22.x, - ] + fail-fast: false + node-version: + # Do not support --experimental-require-module + # Commented until we have a solution to run tests without it + - 14 + - 16 + - 18 + - 20 + - 22 steps: - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js ${{ matrix.node }} uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }}