mirror of
https://github.com/Strum355/mcshader-lsp.git
synced 2025-08-04 17:08:42 +00:00
16 lines
No EOL
325 B
YAML
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 |