forked from sweetalert2/sweetalert2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
38 lines (29 loc) · 807 Bytes
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# AppVeyor file
# http://www.appveyor.com/docs/appveyor-yml
# Build version format
version: "{build}"
# Do not build feature branch with open Pull Requests
skip_branch_with_pr: true
# Scripts that are called at very beginning, before repo cloning
init:
# Fix line endings on Windows
- git config --global core.autocrlf true
# Test against this version of Node.js
environment:
nodejs_version: "8"
build: off
install:
- ps: Install-Product node $env:nodejs_version
- yarn
test_script:
- yarn run build
- yarn run check:qunit
notifications:
- provider: Email
to:
- limon.monte@gmail.com
on_build_success: false
on_build_failure: false
on_build_status_changed: true
# Preserve node_modules between builds
cache: node_modules -> appveyor.yml,package.json,yarn.lock