We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f5e1d1 commit b666aa7Copy full SHA for b666aa7
.circleci/config.yml
@@ -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
0 commit comments