From 587e1939f5d7a6ec082b8aafe45afede303d5b07 Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Fri, 6 Feb 2026 00:39:56 +0100 Subject: [PATCH] ci: run all tests on the update-lockfile branch --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0837ba4381..48551b94b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,13 +94,13 @@ jobs: run: tar -xzf compiled.tar.gz - name: run tests (main) timeout-minutes: 70 - if: github.ref_name == 'main' + if: github.ref_name == 'main' || github.ref_name == 'chore/update-lockfile' run: pnpm run ci:test-main env: PNPM_WORKERS: 3 - name: run tests (branch) timeout-minutes: 70 - if: github.ref_name != 'main' + if: github.ref_name != 'main' && github.ref_name != 'chore/update-lockfile' run: pnpm run ci:test-branch env: PNPM_WORKERS: 3