Files
kestrelos/.woodpecker/pr.yml
Keli Grubb 547b94bac8
All checks were successful
ci/woodpecker/push/push Pipeline was successful
fix malformed path in docker publish (#2)
Co-authored-by: Madison Grubb <madison@elastiflow.com>
Reviewed-on: #2
2026-02-12 20:27:03 +00:00

39 lines
749 B
YAML

when:
- event: pull_request
steps:
- name: lint
image: node:24-slim
depends_on: []
commands:
- npm ci
- npm run lint
- name: test
image: node:24-slim
depends_on: []
commands:
- npm ci
- npm run test
- name: e2e
image: mcr.microsoft.com/playwright:v1.58.2-noble
depends_on: []
commands:
- npm ci
- ./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