Skip to content
Snippets Groups Projects
.gitlab-ci.yml 207 B
stages:
  - test

before_script:
  - npm install --global gulp gulp-cli babel babel-cli babel-core babel-register mocha
  - npm install

run_tests:
  stage: test
  script:
    - gulp test
  tags:
    - node