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