svg-layout-designer-react/.drone.yml
Eric NGUYEN da7f5060e8
All checks were successful
continuous-integration/drone/push Build is passing
drone-ci: Remove pnpm
2022-08-16 17:02:40 +02:00

25 lines
No EOL
355 B
YAML

---
kind: pipeline
name: node-16-lts
steps:
- name: test
image: node:16
commands:
- node ./test-server/node-http.js &
- npm ci
- 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 ci
- npm run test:nowatch
- npm run build