All checks were successful
continuous-integration/drone/push Build is passing
30 lines
485 B
YAML
30 lines
485 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: server_build_and_test
|
|
|
|
steps:
|
|
- name: build_server
|
|
image: node
|
|
commands:
|
|
- npm ci -w @calchat/shared
|
|
- npm ci -w @calchat/server
|
|
- npm run build -w @calchat/server
|
|
|
|
- name: jest_server
|
|
image: node
|
|
commands:
|
|
- npm run test -w @calchat/server
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
type: docker
|
|
name: check_for_formatting
|
|
|
|
steps:
|
|
- name: format_check
|
|
image: node
|
|
commands:
|
|
- npm ci
|
|
- npm run check_format
|