Compare commits

...

2 commits

Author SHA1 Message Date
d0c116cee1 Merge pull request 'Add drone-YAML.' (#7) from feature/enable-ci into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #7
2025-01-08 22:25:44 +01:00
ee84a40872
Add drone-YAML.
All checks were successful
continuous-integration/drone/pr Build is passing
2025-01-08 22:23:31 +01:00

16
.drone.yml Normal file
View file

@ -0,0 +1,16 @@
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/master
- refs/head/feature/**
- refs/tags/**