From a1dbb2cb9251a4012fc0561e16aaa14a3767be5f Mon Sep 17 00:00:00 2001 From: Umputun Date: Wed, 19 Aug 2026 23:53:52 -0500 Subject: [PATCH] ci: run frontend checks on any frontend change The path filter matched only frontend/apps/remark42/**, so a change to the workspace root ran nothing: no lint, type-check, tests or size-limit, and no docker build either since docker.yml waits on this workflow by name. #2160 rewrote pnpm-lock.yaml and the override block, and #2172 removed a workspace package and its CI workflow. Neither ran a single frontend check on its PR or on master. --- .github/workflows/ci-frontend.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-frontend.yml b/.github/workflows/ci-frontend.yml index b8057aef..6cf0662a 100644 --- a/.github/workflows/ci-frontend.yml +++ b/.github/workflows/ci-frontend.yml @@ -6,12 +6,12 @@ on: - master paths: - ".github/workflows/ci-frontend.yml" - - "frontend/apps/remark42/**" + - "frontend/**" - "!**.md" pull_request: paths: - ".github/workflows/ci-frontend.yml" - - "frontend/apps/remark42/**" + - "frontend/**" - "!**.md" jobs: