From 7fa37bb518f14b68b52f22b5f7a2dead794b4fdc Mon Sep 17 00:00:00 2001 From: Maarten <57992191+m10rten@users.noreply.github.com> Date: Wed, 13 Mar 2024 03:41:21 +0100 Subject: [PATCH] Added latest stable Node and TypeScript versions to test matrix for up-to-date testing. (#3278) * #3276: Add Node LTS(20) to test matrix * #3277: Add TypeScript 5.3 to test matrix --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0e6e5c217..1a36dbd51 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,8 +13,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: ["18"] - typescript: ["4.5", "4.6", "4.7", "4.8", "4.9", "5.0"] + node: ["18", "20"] + typescript: ["4.5", "4.6", "4.7", "4.8", "4.9", "5.0", "5.3"] name: Test with TypeScript ${{ matrix.typescript }} on Node ${{ matrix.node }} steps: - uses: actions/checkout@v2