diff --git a/.github/workflows/blob.yml b/.github/workflows/blob.yml index c147ad9..f83200a 100644 --- a/.github/workflows/blob.yml +++ b/.github/workflows/blob.yml @@ -17,9 +17,13 @@ jobs: name: Typecheck runs-on: ubuntu-latest strategy: + fail-fast: false matrix: node-version: - 16 + - 18 + - 20 + - 22 project: - blob steps: @@ -42,10 +46,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: node-version: - - 14 - 16 + - 18 + - 20 + - 22 os: - ubuntu-latest - windows-latest diff --git a/.github/workflows/fetch.yml b/.github/workflows/fetch.yml index 663430c..e0e0447 100644 --- a/.github/workflows/fetch.yml +++ b/.github/workflows/fetch.yml @@ -18,9 +18,13 @@ jobs: name: Typecheck runs-on: ubuntu-latest strategy: + fail-fast: false matrix: node-version: - 16 + - 18 + - 20 + - 22 project: - fetch steps: @@ -44,22 +48,19 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: node-version: - - 14 - 16 + - 18 + - 20 + - 22 os: - ubuntu-latest - windows-latest - macos-latest project: - fetch - exclude: - - os: windows-latest - node-version: 14 - # On macOS, run tests with only the LTS environments. - - os: macos-latest - node-version: 14 steps: - uses: actions/checkout@v2 @@ -78,7 +79,7 @@ jobs: # upload coverage only once - name: Coveralls uses: coverallsapp/github-action@master - if: matrix.node == '14' && matrix.os == 'ubuntu-latest' + if: matrix.node-version == '22' && matrix.os == 'ubuntu-latest' with: github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/file.yml b/.github/workflows/file.yml index 5ffe24c..8b8d9d7 100644 --- a/.github/workflows/file.yml +++ b/.github/workflows/file.yml @@ -17,9 +17,13 @@ jobs: name: Typecheck runs-on: ubuntu-latest strategy: + fail-fast: false matrix: node-version: - 16 + - 18 + - 20 + - 22 project: - file steps: @@ -42,10 +46,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: node-version: - - 14 - 16 + - 18 + - 20 + - 22 os: - ubuntu-latest - windows-latest diff --git a/.github/workflows/form-data.yml b/.github/workflows/form-data.yml index 6238204..d71a4f2 100644 --- a/.github/workflows/form-data.yml +++ b/.github/workflows/form-data.yml @@ -18,9 +18,13 @@ jobs: name: Typecheck runs-on: ubuntu-latest strategy: + fail-fast: false matrix: node-version: - 16 + - 18 + - 20 + - 22 project: - form-data steps: @@ -43,10 +47,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: node-version: - - 14 - 16 + - 18 + - 20 + - 22 os: - ubuntu-latest - windows-latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d751a1f..15cf759 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -87,7 +87,7 @@ jobs: - name: Setup uses: actions/setup-node@v2 with: - node-version: 16 + node-version: 22 registry-url: https://registry.npmjs.org/ if: ${{ steps.release.outputs.release_created }} - name: Install diff --git a/.github/workflows/stream.yml b/.github/workflows/stream.yml index e93c534..fd21022 100644 --- a/.github/workflows/stream.yml +++ b/.github/workflows/stream.yml @@ -17,9 +17,13 @@ jobs: name: Typecheck runs-on: ubuntu-latest strategy: + fail-fast: false matrix: node-version: - 16 + - 18 + - 20 + - 22 project: - stream steps: @@ -43,10 +47,13 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: node-version: - - 14 - 16 + - 18 + - 20 + - 22 os: - ubuntu-latest - windows-latest @@ -76,9 +83,13 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: node-version: - 16 + - 18 + - 20 + - 22 project: - stream @@ -89,7 +100,7 @@ jobs: - name: Setup Node uses: actions/setup-node@v2 with: - node-version: 16 + node-version: 22 - name: Install dependencies uses: bahmutov/npm-install@v1