You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

46 lines
1.4 KiB

6 years ago
version: 2
jobs:
build:
6 years ago
docker:
- image: circleci/node:9-stretch-browsers
6 years ago
environment:
- FIREFOX_VERSION: "60.0.2"
6 years ago
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
6 years ago
- checkout
- restore_cache:
6 years ago
key: dependency-cache-{{ checksum "package-lock.json" }}
6 years ago
- run:
name: Install npm wee
command: npm install
- save_cache:
6 years ago
key: dependency-cache-{{ checksum "package-lock.json" }}
6 years ago
paths:
- node_modules
6 years ago
- 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
6 years ago
- run: node >/dev/null e2e/web-server & npm run test:e2e