-
Notifications
You must be signed in to change notification settings - Fork 908
/
Copy path.travis.yml
47 lines (44 loc) · 1.12 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
language: node_js
node_js:
- 8
cache: yarn
# Define global C++ compiler version
env:
global:
- CXX=g++-4.8
before_install:
# Yarn defaults to an old version, make sure we
# get an up to date version
- npm install -g yarn
- '[ "${NPM_TOKEN+x}" ] && echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > $HOME/.npmrc || echo "Skipping .npmrc creation";'
before_script:
- cp config/ci.config.json config/project.json
# Misc Addons/Configs
dist: trusty
sudo: required
addons:
apt:
sources:
- google-chrome
- ubuntu-toolchain-r-test
packages:
- google-chrome-stable
- g++-4.8
jobs:
include:
- stage: test
script: xvfb-run yarn test
after_success: yarn test:coverage
env: '#comment = yarn test'
- stage: test
script: xvfb-run yarn test:saucelabs
env: '#comment = yarn test:saucelabs'
if: type = push
- stage: deploy
script: skip
# NPM Canary Build Config
deploy:
skip_cleanup: true
provider: script
script: yarn release --canary
if: type = push AND repo = firebase/firebase-js-sdk AND branch = master