labyrinth-frontend/.drone.yml

17 lines
251 B
YAML
Raw Normal View History

2025-01-08 22:23:31 +01:00
kind: pipeline
type: docker
name: default
2025-01-08 22:29:28 +01:00
2025-01-08 22:23:31 +01:00
steps:
- name: install
2025-01-08 22:43:58 +01:00
image: node:22-alpine
2025-01-08 22:23:31 +01:00
commands:
2025-01-08 22:31:46 +01:00
- npm install
2025-01-08 22:23:31 +01:00
- npm run lint
- npm run build
when:
2025-01-08 22:30:39 +01:00
branch:
2025-01-08 22:23:31 +01:00
include:
2025-01-08 22:30:39 +01:00
- main
- feature/*