diff --git a/.github/workflows/blob.yml b/.github/workflows/blob.yml index c147ad9c..f83200ae 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 663430c7..e0e04475 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 5ffe24c1..8b8d9d7f 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 6238204b..d71a4f2e 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 d751a1fe..15cf7595 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 e93c5349..fd21022b 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