From 30cc104b24d08a3a60c68e543c627758a75b45b4 Mon Sep 17 00:00:00 2001 From: woh Date: Sun, 8 Dec 2024 17:37:06 +0100 Subject: [PATCH] hotfix: Drop TS 4.x --- .github/workflows/runTestsOnPush.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/runTestsOnPush.yml b/.github/workflows/runTestsOnPush.yml index b62976c3a..4ac91118e 100644 --- a/.github/workflows/runTestsOnPush.yml +++ b/.github/workflows/runTestsOnPush.yml @@ -8,13 +8,13 @@ jobs: matrix: node-version: [18, 20, 21] os: [macos-latest, ubuntu-latest, windows-latest] - typescript-version: ['^4.9.5', '^5.2.2'] + typescript-version: ['^5.0.0'] steps: - uses: actions/checkout@master - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: yarn @@ -35,7 +35,7 @@ jobs: # run: yarn set resolution typescript ${{ matrix.typescript-version }} - name: Install - run: yarn install --ignore-scripts --no-lockfile + run: yarn install --ignore-scripts - name: Output ts version run: yarn tsc --version