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 }}