Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Gatsby.gitlab-ci.yml « Pages « templates « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a683561a45573cf1bedcbba160eadeeb74d77291 (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/ce/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