mirror of
https://github.com/danog/inline-critical.git
synced 2024-11-26 20:14:41 +01:00
24 lines
382 B
YAML
24 lines
382 B
YAML
# https://www.appveyor.com/docs/appveyor-yml
|
|
|
|
version: "{build}"
|
|
|
|
clone_depth: 10
|
|
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: "8"
|
|
- nodejs_version: "6"
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm install
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- node --version && npm --version
|
|
- npm test
|
|
|
|
cache:
|
|
- 'node_modules -> appveyor.yml,package.json,package-lock.json'
|