-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
appveyor.yml
40 lines (33 loc) · 966 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
init:
# Get the latest stable version of Node.js
- ps: Install-Product node $env:nodejs_version
- npm install --global yarn
- set PATH=%PATH%;C:\.yarn\bin
image:
- Visual Studio 2017
matrix:
fast_finish: true
environment:
matrix:
- nodejs_version: '14'
- nodejs_version: '16'
- nodejs_version: '17'
cache:
- "%LOCALAPPDATA%\\Yarn"
install:
# install modules
- yarn install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
- cd packages/idyll-ast && npm run test && cd ../..
- cd packages/idyll-cli && npm run test && cd ../..
- cd packages/idyll-compiler && npm run test && cd ../..
- cd packages/idyll-components && npm run test && cd ../..
- cd packages/idyll-document && npm run test && cd ../..
- cd packages/idyll-layouts && npm run test && cd ../..
- cd packages/idyll-themes && npm run test && cd ../..
# Don't actually build.
build: off