From 5e14f3f94cc7b8e6a9398950a4093565e07ada8b Mon Sep 17 00:00:00 2001 From: Jonatan Nilsson Date: Tue, 11 Jan 2022 07:29:15 +0000 Subject: [PATCH] Add appveyor config --- appveyor.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..c17af0a --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,26 @@ +# 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 +clone_depth: 1 + +# Build worker image (VM template) +build_cloud: Docker + +environment: + docker_image: node:16-alpine + npm_config_cache: /appveyor/projects/cache + +test_script: + - sh: | + npm test