mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 22:31:15 +00:00

* Update dependencies * Switch from jsdom to cheerio * Update the supported Node.js versions * Recompile the client-side CSS and JS
27 lines
442 B
YAML
27 lines
442 B
YAML
|
|
# Language/versions
|
|
language: node_js
|
|
matrix:
|
|
include:
|
|
- node_js: '0.10'
|
|
- node_js: '0.12'
|
|
- 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'
|