Skip to content
Snippets Groups Projects
.gitlab-ci.yml 309 B
Newer Older
image: node:lts
Keith Millette's avatar
Keith Millette committed

stages:
  - test
  - deploy

test:
  stage: test
  script:
  - cd website
  - yarn install
  - yarn build
  except:
    - master

pages:
  stage: deploy
  script:
  - cd website
  - yarn install
  - yarn build
  - mv ./build ../public
  artifacts:
    paths:
    - public
  only:
    - master