25 строки
339 B
YAML
25 строки
339 B
YAML
skip_branch_with_pr: true
|
|
skip_tags: true
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
cache:
|
|
- '%AppData%\npm-cache -> appveyor.yml'
|
|
- node_modules -> package-lock.json
|
|
|
|
install:
|
|
- npm ci
|
|
|
|
before_build:
|
|
# Output useful info for debugging.
|
|
- node --version
|
|
- npm --version
|
|
|
|
build_script:
|
|
- npm run build
|
|
|
|
test_script:
|
|
- npm run test
|