-
Notifications
You must be signed in to change notification settings - Fork 237
/
appveyor.yml
40 lines (33 loc) · 933 Bytes
/
appveyor.yml
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
# AppVeyor file
# http://www.appveyor.com/docs/lang/nodejs-iojs
# http://www.appveyor.com/docs/appveyor-yml
version: "{build}"
clone_depth: 10
# Test against the latest version of this Node.js version
environment:
nodejs_version: "14"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
- cp qmui.config.js ../qmui.config.js
- npm install -g gulp-cli
# install modules
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- gulp initProject
- gulp list
- gulp sass
- gulp include
- gulp clean
- gulp merge
# Don't actually build.
build: off
cache:
- C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # npm cache
- node_modules -> package.json # local npm modules