svg-layout-designer-react/.drone.yml

24 lines
No EOL
318 B
YAML

---
kind: pipeline
name: node-16-lts
steps:
- name: test
image: node:16
commands:
- node ./test-server/http.js &
- npm i
- npm run build
---
kind: pipeline
name: node-latest
steps:
- name: test
image: node
commands:
- node ./test-server/http.js &
- npm i
- npm run test:nowatch
- npm run build