From 398e5c85b7059ef3a8a5cfe1f7dc2ee87eee85ca Mon Sep 17 00:00:00 2001 From: Sharang Parnerkar Date: Mon, 18 May 2026 23:04:53 +0200 Subject: [PATCH] ci(portal): drop hashFiles job gate (act_runner doesn't evaluate it) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Gitea's act_runner doesn't evaluate hashFiles() at job-level if: conditions, so the gate I added in M0.2 universally skipped the test job even when package.json was committed. Drop it for portal — package.json is a permanent fixture in this repo so we always want test + e2e to run. e2e/image jobs keep their other conditions (push-to-main, etc.) Refs: M5.1 --- .gitea/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index b377045..664d7ad 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -57,7 +57,7 @@ jobs: test: runs-on: docker - if: hashFiles('package.json') != '' + steps: - uses: actions/checkout@v4