storage-upload/appveyor.yml

25 lines
398 B
YAML

# version format
version: '{build}'
# branches to build
branches:
# whitelist
only:
- master
# Do not build on tags (GitHub, Bitbucket, GitLab, Gitea)
skip_tags: true
# Maximum number of concurrent jobs for the project
max_jobs: 1
# Build worker image (VM template)
build_cloud: Docker
image: node
build_script:
- sh: npm install
- sh: npm list --all
test_script:
- sh: npm test