From 46bc3f2c6fe71a6a5bb44937e334369667537715 Mon Sep 17 00:00:00 2001 From: Mattt Date: Tue, 12 Mar 2024 07:03:48 -0700 Subject: [PATCH] Update CI configuration for integration test suite (#218) * Update configuration of integration test suite to run withour fail-fast behavior * Run Cloudflare Worker test suite only on latest Node version --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc4d90e..8d4345e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,9 +33,13 @@ 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 + exclude: + - suite: cloudflare-worker + node-version: 18.x # Only test Cloudflare suite with the latest Node version + fail-fast: false env: REPLICATE_API_TOKEN: ${{ secrets.REPLICATE_API_TOKEN }}