mirror of
https://github.com/bitwarden/browser
synced 2026-01-01 16:13:27 +00:00
fix build and run on os matrix
This commit is contained in:
@@ -74,9 +74,15 @@ module.exports = (config) => {
|
||||
removeBrowser('Opera');
|
||||
removeBrowser('SafariTechPreview');
|
||||
|
||||
if (process.env.APPVEYOR === 'True') {
|
||||
var ci = process.env.CI === 'True' || process.env.CI === 'true';
|
||||
var githubAction = process.env.GITHUB_WORKFLOW != null && process.env.GITHUB_WORKFLOW !== '';
|
||||
var appveyor = process.env.APPVEYOR === 'True';
|
||||
if (githubAction || appveyor) {
|
||||
removeBrowser('Edge');
|
||||
}
|
||||
if (githubAction) {
|
||||
removeBrowser('Firefox');
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user