From 783e7befcfa007b2b2e9566d275f4848c641666e Mon Sep 17 00:00:00 2001 From: Jack Williams Date: Wed, 6 Mar 2024 21:06:54 +0000 Subject: [PATCH] Test against `typescript@~5.4.0` instead of `typescript@rc` (#511) ## Summary Following #500 and the full release of [TypeScript 5.4](https://github.com/microsoft/TypeScript/releases/tag/v5.4.2), updates our type tests to use `typescript@~5.4.0` instead of `typescript@rc`, as the `rc` tag will change over time. ## Checklist - [ ] ~Added a [docs PR](https://github.com/inngest/website) that references this PR~ N/A Chore - [x] Added unit/integration tests - [x] Added changesets if applicable ## Related - #500 --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 44aa1faf..e8c474ba 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -50,7 +50,7 @@ jobs: matrix: tsVersion: - 'latest' - - 'rc' + - '~5.4.0' - '~5.3.0' - '~5.2.0' - '~5.1.0'