Attempt at adding appveyor build script
Some checks failed
continuous-integration/appveyor/branch Error parsing appveyor.yml
Some checks failed
continuous-integration/appveyor/branch Error parsing appveyor.yml
This commit is contained in:
parent
57ecb339db
commit
f05e51d484
1 changed files with 25 additions and 0 deletions
25
appveyor.yml
Normal file
25
appveyor.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
# 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
|
Loading…
Reference in a new issue