aboutsummaryrefslogblamecommitdiffstats
path: root/circle.yml
blob: 6aba5c1be5ee13cb2b21b0f735dc481ab56d73eb (plain) (tree)
1
2
3
4
5
6

        
                  

           
                










                                                                                                                                    
machine:
  node:
    version: 8.1.4
test:
  override:
    - "npm test"
dependencies:
  pre:
    - sudo apt-get update
    # get latest stable firefox
    - sudo apt-get install firefox
    - firefox_cmd=`which firefox`; sudo rm -f $firefox_cmd; sudo ln -s `which firefox.ubuntu` $firefox_cmd
    # get latest stable chrome
    - wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
    - sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
    - sudo apt-get update
    - sudo apt-get install google-chrome-stable