forked from karma-runner/karma
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
36 lines (26 loc) · 873 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
version: "{build}"
environment:
matrix:
- nodejs_version: "10"
- nodejs_version: "12"
- nodejs_version: "14"
matrix:
fast_finish: true
install:
# Install Node.js
- ps: Install-Product node $env:nodejs_version x64
# Output our current versions for debugging
- node --version
- npm --version
# Install our package dependencies
- appveyor-retry npm install
# Install our current directory as a dependency of itself
- npm run init:windows
test_script:
- npm run test:appveyor
build: off
notifications:
- provider: GitHubPullRequest
auth_token:
secure: EsLCrNVrISCIxbBSTorZ5uxFQf/zRaLNznqYPWQ0LBEl2KG2IgCFRnjiNKpTfTDs
template: "{{#passed}}:white_check_mark:{{/passed}}{{#failed}}:x:{{/failed}} [Build {{&projectName}} {{buildVersion}} {{status}}]({{buildUrl}}) (commit {{commitUrl}} by @{{&commitAuthorUsername}})"