From 5ffd96cc804ba9751bfa9676e78431c87b32b056 Mon Sep 17 00:00:00 2001 From: Mattt Zmuda Date: Tue, 12 Mar 2024 03:20:54 -0700 Subject: [PATCH 1/2] Update configuration of integration test suite to run withour fail-fast behavior --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc4d90e..7c6e417 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,9 +33,10 @@ jobs: strategy: matrix: + # See supported Node.js release schedule at https://nodejs.org/en/about/previous-releases node-version: [18.x, 20.x] suite: [commonjs, esm, typescript, cloudflare-worker] - # See supported Node.js release schedule at https://nodejs.org/en/about/previous-releases + fail-fast: false env: REPLICATE_API_TOKEN: ${{ secrets.REPLICATE_API_TOKEN }} From 9a2a8e90a897903e234a6504c83dd7f6a1758745 Mon Sep 17 00:00:00 2001 From: Mattt Zmuda Date: Tue, 12 Mar 2024 03:23:33 -0700 Subject: [PATCH 2/2] Run Cloudflare Worker test suite only on latest Node version --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c6e417..8d4345e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,9 @@ jobs: # See supported Node.js release schedule at https://nodejs.org/en/about/previous-releases node-version: [18.x, 20.x] suite: [commonjs, esm, typescript, cloudflare-worker] + exclude: + - suite: cloudflare-worker + node-version: 18.x # Only test Cloudflare suite with the latest Node version fail-fast: false env: