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

zhaoxuanchao's avatar
zhaoxuanchao committed
3
stages:
zhaoxuanchao's avatar
zhaoxuanchao committed
4
  - prepare
zhaoxuanchao's avatar
zhaoxuanchao committed
5
  - build
zhaoxuanchao's avatar
zhaoxuanchao committed
6
  - deploy
zhaoxuanchao's avatar
zhaoxuanchao committed
7 8 9

install_dependencies:
  stage: prepare
zhaoxuanchao's avatar
zhaoxuanchao committed
10
  script:
zhaoxuanchao's avatar
zhaoxuanchao committed
11 12 13 14 15 16 17 18 19
    - yarn install --frozen-lockfile

build_code:
  stage: build
  only:
    - dev
    - beta
    - production
  environment: $CI_COMMIT_BRANCH
zhaoxuanchao's avatar
zhaoxuanchao committed
20
  script:
zhaoxuanchao's avatar
zhaoxuanchao committed
21 22 23 24 25 26 27
    - yarn run build
  artifacts:
    name: "${CI_COMMIT_SHA}_build"
    untracked: true
    paths:
      - build/
    expire_in: 3 hrs