All checks were successful
continuous-integration/drone/push Build is passing
24 lines
446 B
YAML
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
|