source: trip-planner-front/node_modules/karma/appveyor.yml@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 807 bytes
Line 
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
23test_script:
24 - npm run test:unit
25 - npm run test:client
26
27build: off
28
29notifications:
30 - provider: GitHubPullRequest
31 auth_token:
32 secure: EsLCrNVrISCIxbBSTorZ5uxFQf/zRaLNznqYPWQ0LBEl2KG2IgCFRnjiNKpTfTDs
33 template: "{{#passed}}:white_check_mark:{{/passed}}{{#failed}}:x:{{/failed}} [Build {{&projectName}} {{buildVersion}} {{status}}]({{buildUrl}}) (commit {{commitUrl}} by @{{&commitAuthorUsername}})"
34
Note: See TracBrowser for help on using the repository browser.