From 737d50d87d85479d5dfb954ef0a0a447b1c5d0ff Mon Sep 17 00:00:00 2001 From: sobolk <5849952+sobolk@users.noreply.github.com> Date: Wed, 18 Jun 2025 14:46:28 -0700 Subject: [PATCH] Undo workarounds --- .github/workflows/canary_checks.yml | 8 ++++---- .github/workflows/health_checks.yml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/canary_checks.yml b/.github/workflows/canary_checks.yml index fe3efcab216..57f43f21319 100644 --- a/.github/workflows/canary_checks.yml +++ b/.github/workflows/canary_checks.yml @@ -19,10 +19,10 @@ jobs: rm package-lock.json ./scripts/retry.js npm install npm run build - # - name: Check dependencies - # shell: bash - # run: | - # npm run check:dependencies + - name: Check dependencies + shell: bash + run: | + npm run check:dependencies - name: Run unit and integration tests shell: bash run: | diff --git a/.github/workflows/health_checks.yml b/.github/workflows/health_checks.yml index 385035577ec..4d5b9f7e837 100644 --- a/.github/workflows/health_checks.yml +++ b/.github/workflows/health_checks.yml @@ -800,11 +800,11 @@ jobs: run: npx tsx scripts/check_changeset_completeness.ts "$BASE_SHA" env: BASE_SHA: ${{ github.event.pull_request.base.sha }} - # - name: Validate that changeset has necessary dependency updates - # run: | - # npx changeset version - # npm update - # npm run check:dependencies + - name: Validate that changeset has necessary dependency updates + run: | + npx changeset version + npm update + npm run check:dependencies check_package_versions: if: github.event_name == 'pull_request' runs-on: ubuntu-latest