forked from ng-packagr/ng-packagr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
30 lines (24 loc) · 833 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
environment:
global:
# Set %PATH% to avoid msys/cygwin DLL conflicts which causes:
# 'fatal error - cygheap base mismatch detected'
PATH: C:\msys64\usr\bin;C:\WINDOWS\system32;C:\Program Files (x86)\7-Zip;C:\WINDOWS;C:\Program Files (x86)\Yarn\bin;C:\Program Files (x86)\nodejs
nodejs_version: '8'
matrix:
fast_finish: true
skip_tags: true
skip_branch_with_pr: true
install:
- ps: Install-Product node $env:nodejs_version
- node --version
- yarn install --frozen-lockfile --non-interactive
test_script:
# Re enable the full test suit when watch tests fully work on windows ci
# these seem to fail on ci but work locally.
# - yarn test
- yarn build && yarn test:specs && yarn integration:samples && yarn integration:specs
build: off
deploy: off
cache:
- node_modules
- "%LOCALAPPDATA%\\Yarn"