Migrate our tests to use github actions (#4614)

This commit is contained in:
alschmiedt
2021-02-02 10:08:51 -08:00
committed by GitHub
parent 3bf364a759
commit 26beff4b2c
6 changed files with 54 additions and 39 deletions

View File

@@ -44,8 +44,8 @@ async function runGeneratorsInBrowser() {
},
path: '/wd/hub'
};
// Run in headless mode on Travis.
if (process.env.TRAVIS_CI) {
// Run in headless mode on Github Actions.
if (process.env.CI) {
options.capabilities['moz:firefoxOptions'] = {
args: ['-headless']
};