svg-layout-designer-react/.drone.yml
Eric Nguyen 60247d6f45
All checks were successful
continuous-integration/drone/push Build is passing
Merged PR 10: Set up CI with Azure Pipelines
2022-08-08 14:14:12 +00:00

23 lines
No EOL
329 B
YAML

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