mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
32 lines
631 B
YAML
32 lines
631 B
YAML
# http://www.appveyor.com/docs/appveyor-yml
|
|
|
|
version: "{build}"
|
|
|
|
clone_depth: 10
|
|
|
|
init:
|
|
- git config --global core.autocrlf false
|
|
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: 8
|
|
- nodejs_version: 10
|
|
- nodejs_version: 12
|
|
|
|
install:
|
|
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
|
|
- npm ci || npm install
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- node --version && npm --version
|
|
- npm test
|
|
|
|
matrix:
|
|
fast_finish: false
|
|
|
|
# cache:
|
|
# - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # npm cache
|
|
# - node_modules -> package.json # local npm modules
|