aboutsummaryrefslogtreecommitdiff
path: root/.circleci/config.yml
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-05-01 13:51:07 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-05-01 13:51:07 +0900
commit4d7c24f38a6861e1d498b6e7dd5c7be2d1a0ad15 (patch)
tree0948f730a25eeda127c56a0f01009f14d066e4dc /.circleci/config.yml
parent177940981ed9c4f096ad7db20f0b7ee044fd7b17 (diff)
parentfb8a0f36aa4d070df936cc7598ef8dd988ee1b15 (diff)
Merge remote-tracking branch 'origin/master' into background-adjacent-tabs
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml45
1 files changed, 45 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..5882b7c
--- /dev/null
+++ b/.circleci/config.yml
@@ -0,0 +1,45 @@
+version: 2
+jobs:
+ build:
+ docker:
+ - image: circleci/node:9-stretch-browsers
+ environment:
+ - FIREFOX_VERSION: "59.0b9"
+ working_directory: ~
+ steps:
+ - restore_cache:
+ key: firefox-bin
+ paths:
+ - ~/firefox
+ - run:
+ name: Install Firefox
+ command: |
+ test -d ~/firefox/${FIREFOX_VERSION} && exit 0
+ url=https://ftp.mozilla.org/pub/firefox/releases/${FIREFOX_VERSION}/linux-x86_64/en-US/firefox-${FIREFOX_VERSION}.tar.bz2
+ curl -sSL -o- "$url" | tar xvfj -
+ mkdir -p ~/firefox
+ mv firefox ~/firefox/${FIREFOX_VERSION}
+ - save_cache:
+ key: firefox-bin
+ paths:
+ - ~/firefox
+ - run: sudo apt-get update && sudo apt-get install -y libgtk-3-0 libdbus-glib-1-2
+
+ - checkout
+ - restore_cache:
+ key: dependency-cache-{{ checksum "package-lock.json" }}
+ - run:
+ name: Install npm wee
+ command: npm install
+ - save_cache:
+ key: dependency-cache-{{ checksum "package-lock.json" }}
+ paths:
+ - node_modules
+
+ - run: echo 'export PATH=~/firefox/$FIREFOX_VERSION:$PATH' >> $BASH_ENV
+ - run: npm run lint
+ - run: npm test
+ - run: npm run package
+ - run: npm run build
+ - run: npm run ambassador:build
+ - run: node e2e/web-server & npm run test:e2e