Skip to content

Instantly share code, notes, and snippets.

View vinitshahdeo's full-sized avatar
🚀
Putting "Tech" into FinTech at Novo

Vinit Shahdeo vinitshahdeo

🚀
Putting "Tech" into FinTech at Novo
View GitHub Profile
@vinitshahdeo
vinitshahdeo / pipelines.yml
Created August 7, 2019 10:14 — forked from nicobytes/pipelines.yml
Install chrome for CI
image: node:6.9.4
pipelines:
branches:
master:
- step:
script:
- apt-get update; apt-get install -y gettext-base;
- echo 'deb http://dl.google.com/linux/chrome/deb/ stable main' > /etc/apt/sources.list.d/chrome.list
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
- set -x && apt-get update && apt-get install -y xvfb google-chrome-stable