Skip to content

Commit

Permalink
initial circle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
stonelasley committed Jul 26, 2017
1 parent 2185f2d commit f9cfff4
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
machine:
timezone:
America/Denver
node:
version: 6.9.5


dependencies:
pre:
- curl -L -o google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- sudo dpkg -i google-chrome.deb
- sudo sed -i 's|HERE/chrome\"|HERE/chrome\" --disable-setuid-sandbox|g' /opt/google/chrome/google-chrome
- rm google-chrome.deb
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update; sudo apt-get install lib32stdc++6 lib32z1 -y
- npm install -g ionic@latest cordova@6.4.0 @angular/cli
post:
- ionic state clear

test:
pre:
- export DISPLAY=:99.0
override:
- npm run lint
- npm run test-ci
- npm run e2e
post:
- ./node_modules/.bin/codecov

#todo
#deployment:
# production:
# commands:
# - ./travis/deploy.sh

0 comments on commit f9cfff4

Please sign in to comment.