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

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