From bc763eec0f62c5ba8ff0a29c67156887a6a3e843 Mon Sep 17 00:00:00 2001 From: SandipBajracharya Date: Wed, 5 Aug 2026 22:29:20 +0545 Subject: [PATCH] ci(OUT-3989): run lint + type-check on pull_request code-quality.yml ran on push only, so lint + typecheck did not gate PRs (incl. fork PRs). Match test.yml's push + pull_request triggers so both checks gate pull requests too. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/code-quality.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 3753486..49e3a4c 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -1,6 +1,9 @@ name: Code Quality Checks -on: push +# pull_request also covers fork PRs, so lint + type-check gate them too. +on: + push: + pull_request: permissions: contents: read