1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

Replaced appveyor build badge with one from Github Workflow (#319)

* Deleted appveyor.yml

* Removed Appveyor check in karma.conf.js

* Modified build badge to use Github workflow

* Fixed missing parenthesis in README.md
This commit is contained in:
Daniel James Smith
2021-04-05 21:25:45 +02:00
committed by GitHub
parent c395293e64
commit b774c3e785
3 changed files with 2 additions and 41 deletions

View File

@@ -82,11 +82,8 @@ module.exports = (config) => {
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('Edge');
removeBrowser('Firefox');
removeBrowser('Safari');
}