glebby/.drone.yml
Paul Brinkmeier a2a17e5ff9
All checks were successful
continuous-integration/drone/push Build is passing
Add type hints and mypy
2023-01-19 03:42:25 +01:00

24 lines
446 B
YAML

---
kind: pipeline
type: docker
name: frontend
steps:
- name: build
image: node:19.4-alpine
commands:
- cd glebby-client
- npm install
- VITE_GLEBBY_SERVER_URL=ws://localhost:5000/glebby npx vite build
---
kind: pipeline
type: docker
name: backend
steps:
- name: typecheck
image: python:3.11-alpine
commands:
- cd glebby-server
- pip install -r requirements-dev.txt
- mypy --strict glebby