강동현
Builds for 1 pipeline canceled in 8 seconds

Pipeline 수정

image: node:14-alpine
stages:
- init
- build
- test
- build
Test Server:
stage: test
script:
- cd common
- yarn install
- cd ../server
- yarn install
- yarn test
Build Server:
stage: build
before_script:
script:
- cd common
- yarn install
- cd ../server
- yarn install
script:
- yarn build
Test Server:
stage: test
Build Web:
stage: build
script:
- yarn test
- cd common
- yarn install
- cd ../web
- npm install
- npm build
......