express-nodejs-app/.drone.yml
Sambo Chea 28e7cce904
Some checks failed
continuous-integration/drone/push Build is failing
Fixed yarn build for ts common inside the packages
2021-09-13 20:47:45 +07:00

17 lines
385 B
YAML

kind: pipeline
type: docker
name: ci
steps:
- name: submodules
image: d.ctdn.net/alpine/git
commands:
- git submodule update --init --recursive
- name: build
image: d.ctdn.net/node
commands:
- yarn config set registry https://r.ctdn.net
- cd packages/ts-common && yarn
- cd ../../ && yarn
- yarn build