summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
blob: 1bf3921f04ec92fb1f21c3993e5fdf22017e2008 (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
25
26
27
28
29
30
environment:
  nodejs_version: "15"

branches:
  only:
    - master

image: Visual Studio 2019

install:
  - ps: Install-Product node $env:nodejs_version
  - yarn
  - set path=%programfiles(x86)%\\Microsoft SDKs\TypeScript\4.2;%path%

build_script:
  - yarn vscode:prepublish

test_script:
  - yarn test

notifications:
  - provider: Webhook
    url: https://webhooks.gitter.im/e/bb4990244c63e96e6cb9
    headers:
      APPVEYOR-PROJECT-NAME: '{{projectName}}'
      APPVEYOR-BUILD-VERSION: '{{buildVersion}}'
      APPVEYOR-COMMIT-ID: '{{commitId}}'
    on_build_success: true
    on_build_failure: true
    on_build_status_changed: true