This commit is contained in:
commit
f9db881123
2 changed files with 26 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
# storage-upload
|
# storage-upload
|
||||||
|
|
||||||
Docker micro service for uploading files to a storage server.
|
Micro service for uploading and image resizing files to a storage server.
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
|
|
||||||
|
|
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