31 lines
673 B
YAML
31 lines
673 B
YAML
# Fix line endings in Windows. (runs before repo cloning)
|
|
init:
|
|
- git config --global core.autocrlf input
|
|
|
|
# Test against these versions of Node.js.
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: "11"
|
|
- nodejs_version: "10"
|
|
- nodejs_version: "8"
|
|
|
|
# Install scripts. (runs after repo cloning)
|
|
install:
|
|
# Get the latest stable version of Node.js or io.js
|
|
- ps: Install-Product node $env:nodejs_version
|
|
# install modules
|
|
- npm install
|
|
- npm install codecov
|
|
|
|
# Post-install test scripts.
|
|
test_script:
|
|
# Output useful info for debugging.
|
|
- node --version
|
|
- npm --version
|
|
# run tests
|
|
- npm test
|
|
- npm run codecov
|
|
|
|
# Don't actually build.
|
|
build: off
|