Skip to content

Instantly share code, notes, and snippets.

@charpeni
Created July 13, 2017 01:16
Show Gist options
  • Save charpeni/994bc68d8acb7379fc96540f7e45f0b7 to your computer and use it in GitHub Desktop.
Save charpeni/994bc68d8acb7379fc96540f7e45f0b7 to your computer and use it in GitHub Desktop.
AppVeyor configuration for Angular CLI
image: Visual Studio 2017
environment:
nodejs_version: "6"
platform:
- x64
install:
- ps: Install-Product node $env:nodejs_version
- yarn install --no-progress
test_script:
- yarn ng -- build --prod --aot --no-progress
- yarn test -- --single-run --no-progress
- yarn lint
build: off
cache:
- node_modules -> yarn.lock
- "%LOCALAPPDATA%/Yarn"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment