svg-layout-designer-react/.drone.yml
Eric NGUYEN 60329ef143
All checks were successful
continuous-integration/drone/push Build is passing
drone: fix using npm ci
2022-08-17 15:55:38 +02:00

25 lines
No EOL
353 B
YAML

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