From af705efc1777c9e744be257fa1217fa256b7cd9e Mon Sep 17 00:00:00 2001 From: mifi Date: Wed, 11 Feb 2026 23:43:14 -0300 Subject: [PATCH] Pipeline fixes --- .woodpecker/ci.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.woodpecker/ci.yaml b/.woodpecker/ci.yaml index 3e1a574..c118c52 100644 --- a/.woodpecker/ci.yaml +++ b/.woodpecker/ci.yaml @@ -76,7 +76,7 @@ steps: when: - status: [failure] - - name: test e2e + - name: e2e test image: mcr.microsoft.com/playwright:v1.58.0-noble commands: - corepack enable && corepack prepare pnpm@10.28.2 --activate @@ -110,10 +110,10 @@ steps: BODY=$(printf '{"username":"WoodpeckerBot","content":"[%s - Build #%s] CI pipeline success 🎉"}' "$CI_REPO" "$CI_PIPELINE_NUMBER") curl -sS -X POST -H "Content-Type: application/json" -d "$BODY" "$MATTERMOST_WEBHOOK_URL" depends_on: - - 'install' - - 'lint' - - 'build' - - 'unit test' - - 'e2e test' + - install + - lint + - build + - unit test + - e2e test when: - status: [success]