mcshader-lsp/.drone.yml
2020-08-07 00:58:34 +01:00

16 lines
No EOL
325 B
YAML

kind: pipeline
name: default
steps:
- name: unit test server
image: instrumentisto/rust:nightly-stretch-slim
commands:
- cd server
- cargo test
- name: lint client
image: node:14
commands:
- npm i --unsafe-perm
- npm run compile
- npm run lint