svg-layout-designer-react/.drone.yml
Siklos 900e925531
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Add pnpm to drone.yml
2022-08-08 18:15:56 +02:00

25 lines
No EOL
473 B
YAML

---
kind: pipeline
name: node-16-lts
steps:
- name: test
image: node:16
commands:
- curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm@7
- node ./test-server/node-http.js &
- pnpm install
- pnpm run test:nowatch
---
kind: pipeline
name: node-latest
steps:
- name: test
image: node
commands:
- curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm@7
- node ./test-server/node-http.js &
- pnpm install
- pnpm run test:nowatch