aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 4bfb623cf5e0da9841cf8a277c1d047011da1f93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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

test:
  script:
  - make test

pages:
  script:
  - make build
  artifacts:
    paths:
    - public
  only:
  - master