Travis build stopped

Hello everyone,

I have a problem for a while Travis start the build phase and i don’t know why this happens.

this is my configuration yml file :

dist: trusty
sudo: false
language: node_js
node_js:
  - '12'
addons:
  update: true
  chrome: stable
  apt:
    sources:
      - google-chrome
    packages:
      - dpkg
      - google-chrome-stable
cache:
  directories:
    - ./node_modules
install:
  - npm install
script:
  - npm run test -- --watch=false --no-progress --browsers=ChromeHeadlessNoSandbox

and this is the log that I’m getting :
https://travis-ci.org/sh0derun/WGFW/jobs/645465977

Looks like a duplicate of

among others.

i don’t know if you saw my configuration file, i already added chrome:stable but the same issue !

The error is coming from the apt addon, which you have left behind.

Thank you, it works now :slight_smile: