Skip to content

Commit

Permalink
✨ 🏁 add appveyor build (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
acburdine authored Sep 19, 2016
1 parent 119f2ab commit 114cdb4
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf true

clone_depth: 1

environment:
matrix:
- nodejs_version: "4.5"

platform:
- x64

cache:
- bower_components -> bower.json
- node_modules -> package.json
- '%APPDATA%\npm-cache'
- '%APPDATA%\Roaming\bower'

branches:
only:
- master

# Install scripts. (runs after repo cloning)
install:
# Let's try to get things working
# Install Node 4 ---------------------------------------------------------
- ps: Install-Product node 4.5
# Typical npm stuff ------------------------------------------------------
- md C:\nc
- npm version
- npm config set cache C:\nc
# Installation, globals --------------------------------------------------
- npm install -g --no-color --no-progress bower
# Installation, deps -----------------------------------------------------
- npm install --no-optional --no-color --no-progress --ignore-scripts
- bower install

test_script:
- npm run test:all

# Set build version format here instead of in the admin panel.
build: off
version: "{build}"

0 comments on commit 114cdb4

Please sign in to comment.