aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: b83520dfba3066cf2c010a76bc504d3e8d79e2c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
image: node:7.7.3

cache:
  paths:
  - node_modules/

before_script:
  - npm install
  - npm install bower
  - npm install purescript
  - npm install pulp
  - bower install

pages:
  stage: deploy
  script:
  - ./build
  artifacts:
    paths:
    - public
  only:
  - master