mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 14:21:13 +00:00
25 lines
398 B
YAML
25 lines
398 B
YAML
|
|
# Language/versions
|
|
language: node_js
|
|
matrix:
|
|
include:
|
|
- node_js: '4'
|
|
- node_js: '5'
|
|
- node_js: '6'
|
|
|
|
# Build only master (and pull-requests)
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
# Services setup
|
|
services:
|
|
- mongodb
|
|
|
|
# Build script
|
|
before_script:
|
|
- cp config/test.sample.json config/test.json
|
|
- NODE_ENV=test node index.js &
|
|
- sleep 5 # give server time to start
|
|
script: 'make ci'
|