UNPKG

836 BYAMLView Raw
1version: "{build}"
2
3environment:
4 matrix:
5 - nodejs_version: "8"
6 - nodejs_version: "10"
7
8matrix:
9 fast_finish: true
10
11install:
12 # Install Node.js
13 - ps: Install-Product node $env:nodejs_version
14
15 # Output our current versions for debugging
16 - node --version
17 - npm --version
18
19 # Install our package dependencies
20 - appveyor-retry npm install
21
22 # Install our current directory as a dependency of itself
23 - npm run init:windows
24
25test_script:
26 - npm run appveyor
27
28build: off
29
30notifications:
31 - provider: GitHubPullRequest
32 auth_token:
33 secure: EsLCrNVrISCIxbBSTorZ5uxFQf/zRaLNznqYPWQ0LBEl2KG2IgCFRnjiNKpTfTDs
34 template: "{{#passed}}:white_check_mark:{{/passed}}{{#failed}}:x:{{/failed}} [Build {{&projectName}} {{buildVersion}} {{status}}]({{buildUrl}}) (commit {{commitUrl}} by @{{&commitAuthorUsername}})"
35