labyrinth-frontend/.drone.yml
Manuel Friedli 144d1554c2
All checks were successful
continuous-integration/drone/push Build is passing
Fix branch condition: master -> main.
2025-01-08 22:29:28 +01:00

17 lines
298 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: install
image: node:20-alpine
commands:
- apk add firefox
- npm run lint
- npm run build
when:
ref:
include:
- refs/head/main
- refs/head/feature/**
- refs/tags/**