summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: fc861e508d6bf1a00c18496c15c38eb83c2628fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
image: ruby:latest

# This folder is cached between builds
# http://docs.gitlab.com/ce/ci/yaml/README.html#cache
cache:
  paths:
  - node_modules/

test:
  script:
   - npm install
   - npm test