diff --git a/.github/workflows/matrix.yaml b/.github/workflows/matrix.yaml index 3cbbf95..b4ba428 100644 --- a/.github/workflows/matrix.yaml +++ b/.github/workflows/matrix.yaml @@ -13,7 +13,7 @@ on: [push] jobs: node-matrix: - continue-on-error: ${{ matrix.experimental == true }} + continue-on-error: false strategy: matrix: os: [ubuntu-latest, windows-latest] @@ -32,12 +32,10 @@ jobs: exclude: - os: ubuntu-latest node-version: 14 - fail-fast: true + fail-fast: false # max-parallel: 3 runs-on: ${{ matrix.os }} steps: - - if: matrix.experimental == true - run: exit 1 - run: node -v - run: echo '${{ toJson(matrix) }}' - uses: actions/setup-node@v3