From d71551536d119556a87935388b0aed513a243f51 Mon Sep 17 00:00:00 2001 From: saridsa2 Date: Sat, 11 Apr 2026 14:31:49 +0530 Subject: [PATCH] ci: fix pipeline YAML format (use step list syntax) --- .woodpecker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 07cf737..9aa8edb 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -7,14 +7,14 @@ when: - event: [push, manual] steps: - typecheck: + - name: typecheck image: node:20 commands: - corepack enable - yarn install --frozen-lockfile || yarn install - yarn tsc --noEmit - e2e-tests: + - name: e2e-tests image: mcr.microsoft.com/playwright:v1.52.0-noble volumes: - /opt/fortytwo/test-reports:/test-reports @@ -25,7 +25,7 @@ steps: - mkdir -p /test-reports/${CI_PIPELINE_NUMBER} - npx playwright test --reporter=list,html - cp -r playwright-report/* /test-reports/${CI_PIPELINE_NUMBER}/ - - echo "Report published to https://operations.healix360.net/reports/${CI_PIPELINE_NUMBER}/" + - echo "Report → https://operations.healix360.net/reports/${CI_PIPELINE_NUMBER}/" environment: E2E_BASE_URL: https://ramaiah.engage.healix360.net PLAYWRIGHT_HTML_REPORT: playwright-report