summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/templates/Pages/Gatsby.gitlab-ci.yml
blob: 3a6eac638922316d6851ee17d201f9dc5dc6d4b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
image: node:latest

# This folder is cached between builds
# http://docs.gitlab.com/ee/ci/yaml/README.html#cache
cache:
  paths:
    - node_modules/

pages:
  script:
    - yarn install
    - ./node_modules/.bin/gatsby build --prefix-paths
  artifacts:
    paths:
      - public
  only:
    - master