.gitlab-ci.yml 299 Bytes
Newer Older
zhaoxuanchao's avatar
zhaoxuanchao committed
1 2
image: node:12

zhaoxuanchao's avatar
zhaoxuanchao committed
3 4 5 6 7 8 9 10
cache:
  key: ${CI_COMMIT_SHA}_node_modules
  untracked: true
  paths:
    - node_modules/
  policy: pull-push


zhaoxuanchao's avatar
zhaoxuanchao committed
11
stages:
zhaoxuanchao's avatar
zhaoxuanchao committed
12
  - prepare
zhaoxuanchao's avatar
zhaoxuanchao committed
13
  - build
zhaoxuanchao's avatar
zhaoxuanchao committed
14
  - deploy
zhaoxuanchao's avatar
zhaoxuanchao committed
15 16 17

install_dependencies:
  stage: prepare
zhaoxuanchao's avatar
zhaoxuanchao committed
18
  script:
zhaoxuanchao's avatar
zhaoxuanchao committed
19
    - yarn install 
zhaoxuanchao's avatar
zhaoxuanchao committed
20 21 22

build_code:
  stage: build
zhaoxuanchao's avatar
zhaoxuanchao committed
23
  script:
zhaoxuanchao's avatar
zhaoxuanchao committed
24
    - yarn run build