From 3b5aac87d442a7ac34fb26fe0c7bcded7a8b9235 Mon Sep 17 00:00:00 2001 From: Edward Faulkner Date: Tue, 2 Jan 2024 12:44:13 -0500 Subject: [PATCH] Removing ts@next from CI We're seeing potentially-buggy behavior from the currently unreleased typescript. To unblock other PRs I'm taking it out of the CI matrix for the present. (cherry picked from commit 83cc471fc0999927841876e62f7a9b26fed6d229) --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc1ccdd3fa2..ee65aab77e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,9 @@ jobs: needs: ['types'] strategy: matrix: - ts-version: ['4.9', '5.0', 'next'] + # I removed 'next' from this list because we're seeing buggy behavior in + # the so-far unreleased 5.4. -ef4 + ts-version: ['4.9', '5.0'] steps: - uses: actions/checkout@v3 - uses: ./.github/actions/setup