aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: e56e05fd04de56fb9977a089e205a95151ea3895 (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
  - npm install bower
  - npm install purescript
  - npm install pulp
  - bower install

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