From a13765a806b21122004b2b0ebd9a7494d9705712 Mon Sep 17 00:00:00 2001 From: Ninosaurier Date: Mon, 3 Aug 2026 21:57:14 +0200 Subject: [PATCH] fix(ci-runner): checkout repository before component tests --- .gitea/workflows/quality-gate.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/quality-gate.yml b/.gitea/workflows/quality-gate.yml index 078ba2c..21668ac 100644 --- a/.gitea/workflows/quality-gate.yml +++ b/.gitea/workflows/quality-gate.yml @@ -75,6 +75,16 @@ jobs: credentials: username: ${{ secrets.REGISTRY_USER }} password: ${{ secrets.REGISTRY_TOKEN }} + steps: + - uses: actions/checkout@v4 + + - run: corepack enable + + - run: corepack prepare pnpm@11.11.0 --activate + + - run: pnpm install --frozen-lockfile + - name: Run component tests (Playwright) - run: pnpm test:browser \ No newline at end of file + working-directory: packages/luna-charts + run: pnpm test:component \ No newline at end of file