when: - event: pull_request steps: - 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: [install] commands: - npm run test - name: e2e image: mcr.microsoft.com/playwright:v1.58.2-noble depends_on: [install] commands: - ./scripts/gen-dev-cert.sh - npm run test:e2e environment: NODE_TLS_REJECT_UNAUTHORIZED: "0" - name: docker-build image: woodpeckerci/plugin-kaniko depends_on: [] settings: repo: ${CI_REPO_OWNER}/${CI_REPO_NAME} registry: git.keligrubb.com tags: latest dry-run: true single-snapshot: true cleanup: true