diff options
author | kumavis <aaron@kumavis.me> | 2018-03-10 06:27:27 +0800 |
---|---|---|
committer | kumavis <aaron@kumavis.me> | 2018-03-10 06:27:27 +0800 |
commit | 702d09b557952406bb66d0d8bd8e39f3db0d1079 (patch) | |
tree | 50e25df542f93043d11895d1c99f4eb275a5ff78 | |
parent | 9378bc50d24fc6bcb90d9f9c5aef2d4dddd433d2 (diff) | |
download | dexon-wallet-702d09b557952406bb66d0d8bd8e39f3db0d1079.tar.gz dexon-wallet-702d09b557952406bb66d0d8bd8e39f3db0d1079.tar.zst dexon-wallet-702d09b557952406bb66d0d8bd8e39f3db0d1079.zip |
ci - prep-deps - install latest firefox
-rw-r--r-- | .circleci/config.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 8e194d44..a49a6ccb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -38,6 +38,10 @@ jobs: key: dependency-cache-{{ checksum "package-lock.json" }} paths: - node_modules + - run: + name: Install Firefox + command: sudo apt-get install firefox; firefox_cmd=`which firefox`; sudo rm -f $firefox_cmd; sudo ln -s `which firefox.ubuntu` $firefox_cmd + prep-scss: docker: - image: circleci/node:8-browsers @@ -49,8 +53,6 @@ jobs: name: Get Scss Cache key # this allows us to checksum against a whole directory command: ls -laR ui/app/css/ > scss_checksum - - restore_cache: - key: scss-cache-{{ checksum "scss_checksum" }} - run: name: Build for integration tests command: npm run test:integration:build |