From 1ae066fa175025d0097eeb245318f22cee64f18b Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Wed, 26 Nov 2025 13:39:27 +1100 Subject: [PATCH 1/3] chore: set `DENO_UNSTABLE_TSGO=1` in canary in CI --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6b22c0e4ac7..02ea0943e660 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,10 @@ jobs: deno-version: ${{ matrix.deno }} cache: true + - name: Enable TSGO unstable features + if: matrix.deno == 'canary' + run: echo "DENO_UNSTABLE_TSGO=1" >> "$GITHUB_ENV" + - name: Run tests run: | deno task test @@ -134,6 +138,8 @@ jobs: lint: runs-on: ${{ matrix.os }} timeout-minutes: 30 + env: + DENO_UNSTABLE_TSGO: 1 strategy: fail-fast: false matrix: From cb448400613321357763091bbd7bea26b3488132 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Wed, 26 Nov 2025 13:43:01 +1100 Subject: [PATCH 2/3] cleanup --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02ea0943e660..88178b0379b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,10 +37,6 @@ jobs: deno-version: ${{ matrix.deno }} cache: true - - name: Enable TSGO unstable features - if: matrix.deno == 'canary' - run: echo "DENO_UNSTABLE_TSGO=1" >> "$GITHUB_ENV" - - name: Run tests run: | deno task test From b84faff8cf6f6818cc280ee5aba164dc4c8843c8 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Wed, 26 Nov 2025 13:44:00 +1100 Subject: [PATCH 3/3] actually, nevermind --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88178b0379b1..02ea0943e660 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,6 +37,10 @@ jobs: deno-version: ${{ matrix.deno }} cache: true + - name: Enable TSGO unstable features + if: matrix.deno == 'canary' + run: echo "DENO_UNSTABLE_TSGO=1" >> "$GITHUB_ENV" + - name: Run tests run: | deno task test