forked from nklayman/vue-cli-plugin-electron-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
44 lines (34 loc) · 694 Bytes
/
appveyor.yml
File metadata and controls
44 lines (34 loc) · 694 Bytes
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
36
37
38
39
40
41
42
43
44
build: off
os: unstable
platform:
- x64
init:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
branches:
only:
- master
skip_tags: true
skip_commits:
files:
- ".travis.yml"
- ".circleci/*"
- "README.md"
- "UPGRADING.md"
- ".eslintrc.js"
- ".gitignore"
- "logo.png"
- ".github/*"
- "docs/*"
environment:
matrix:
- nodejs_version: "8"
- nodejs_version: "10"
cache:
- "%LOCALAPPDATA%\\Yarn"
install:
- ps: Install-Product node $env:nodejs_version
- yarn install
test_script:
- node --version
- yarn --version
- yarn test --runInBand