svg-layout-designer-react/.drone.yml
Siklos 2c66ff197a
All checks were successful
continuous-integration/drone/push Build is passing
Revert kill on drone.yml because it doesn't work
2022-08-08 16:57:40 +02: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