svg-layout-designer-react/.drone.yml
Eric NGUYEN 05e9013c3b
Some checks failed
continuous-integration/drone/push Build is failing
Added API tests + added vitest.config.ts + added fallback of window.fetch with xmlhttprequest
2022-08-03 16:03:39 +02:00

25 lines
No EOL
367 B
YAML

---
kind: pipeline
name: node-16-lts
steps:
- name: test
image: node:16
commands:
- curl https://bun.sh/install | bash
- 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
- bun run ../test-server.js
- npm install
- npm test