Skip to content

Commit

Permalink
chore: dont run tests on chromium (#1116)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey authored Apr 8, 2021
1 parent 684fd08 commit c2154d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]
jobs:
should-skip:
continue-on-error: true
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
# Map a step output to a job output
outputs:
should-skip-job: ${{steps.skip-check.outputs.should_skip}}
Expand All @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04]
os: [ubuntu-latest]
test-type: [unit, playback, playback-min, coverage]
env:
BROWSER_STACK_USERNAME: ${{secrets.BROWSER_STACK_USERNAME}}
Expand Down
2 changes: 1 addition & 1 deletion scripts/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = function(config) {
preferHeadless: false,
browsers(aboutToRun) {
return aboutToRun.filter(function(launcherName) {
return !(/^Safari/).test(launcherName);
return !(/^(Safari|Chromium)/).test(launcherName);
});
},
files(defaults) {
Expand Down

0 comments on commit c2154d7

Please sign in to comment.