aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: a68520570934a1cff04fb38929d0dbc57680ce8c (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:latest

cache:
  paths:
  - node_modules/

before_script:
  - npm install bower
  - npm install purescript
  - npm install pulp
  - export PATH=node_modules/.bin:$PATH;
  - bower install

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