UNPKG

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