From 68082fd8930aaf65b5681553283df0c1acdfe412 Mon Sep 17 00:00:00 2001 From: keligrubb Date: Sun, 22 Feb 2026 03:11:23 +0000 Subject: [PATCH] patch: fix ci parallelism (#8) Reviewed-on: https://git.keligrubb.com/keligrubb/kestrelos/pulls/8 Co-authored-by: keligrubb Co-committed-by: keligrubb --- .woodpecker/pr.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.woodpecker/pr.yml b/.woodpecker/pr.yml index 684364e..fcb310a 100644 --- a/.woodpecker/pr.yml +++ b/.woodpecker/pr.yml @@ -2,25 +2,28 @@ when: - event: pull_request steps: - - name: lint + - name: install image: node:24-slim depends_on: [] commands: - npm ci + + - name: lint + image: node:24-slim + depends_on: [install] + commands: - npm run lint - name: test image: node:24-slim - depends_on: [] + depends_on: [install] commands: - - npm ci - npm run test - name: e2e image: mcr.microsoft.com/playwright:v1.58.2-noble - depends_on: [] + depends_on: [install] commands: - - npm ci - ./scripts/gen-dev-cert.sh - npm run test:e2e environment: