svg-layout-designer-react/.drone.yml
Eric NGUYEN a95e76865c
All checks were successful
continuous-integration/drone/push Build is passing
Update .drone.yml + update README.md
2022-08-03 16:41:26 +02:00

25 lines
No EOL
383 B
YAML

---
kind: pipeline
name: node-16-lts
steps:
- name: test
image: node:16
commands:
- curl https://bun.sh/install | bash
- node ./test-server/node-http.js &
- npm install
- npm test
---
kind: pipeline
name: node-latest
steps:
- name: test
image: node
commands:
- curl https://bun.sh/install | bash
- node ./test-server/node-http.js &
- npm install
- npm test