svg-layout-designer-react/.drone.yml
Eric NGUYEN b07acdb83d
Some checks failed
continuous-integration/drone/push Build is failing
drone.yml: Add Bun to PATH
2022-08-03 16:05:24 +02:00

29 lines
No EOL
521 B
YAML

---
kind: pipeline
name: node-16-lts
steps:
- name: test
image: node:16
commands:
- curl https://bun.sh/install | bash
- export BUN_INSTALL="$HOME/.bun"
- export PATH="$BUN_INSTALL/bin:$PATH"
- bun run ../test-server.js
- npm install
- npm test
---
kind: pipeline
name: node-latest
steps:
- name: test
image: node
commands:
- curl https://bun.sh/install | bash
- export BUN_INSTALL="$HOME/.bun"
- export PATH="$BUN_INSTALL/bin:$PATH"
- bun run ../test-server.js
- npm install
- npm test