blob: c9daf04a4e7fb8c531d9158e70e3b34d1097ff03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
install:
- npm --version
- node --version
- cd gui
- npm install
# This is the "test phase", tweak it as you see fit
test_script:
- npm run lint
- npm run build
- npm test
# Stops feature branches from triggering two builds (One for branch and one for PR)
skip_branch_with_pr: true
notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: false
# We build in the test stage, so disable Appveyor's build stage. This prevents
# the "directory does not contain a project or solution file" error.
build: false
|