Skip to content

Commit b666aa7

Browse files
committed
Migrate to CircleCI 2.0
1 parent 9f5e1d1 commit b666aa7

File tree

2 files changed

+23
-19
lines changed

2 files changed

+23
-19
lines changed

.circleci/config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
version: 2
2+
jobs:
3+
build:
4+
machine:
5+
java:
6+
version: oraclejdk8
7+
node:
8+
version: v6.11.1
9+
10+
steps:
11+
- checkout
12+
- run: |
13+
curl -L -o google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
14+
sudo dpkg -i google-chrome.deb
15+
sudo sed -i 's|HERE/chrome\"|HERE/chrome\" --disable-setuid-sandbox|g' /opt/google/chrome/google-chrome
16+
rm google-chrome.deb
17+
- run: npm install
18+
- run:
19+
name: Start http-server
20+
command: npm start
21+
background: true
22+
- run: npm run build
23+
- run: npm run check

circle.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)