Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
- name: Install dependencies
if: steps.npm-cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
run: npm ci
- uses: saucelabs/sauce-connect-action@v1
with:
username: ${{ secrets.SAUCE_USERNAME }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/npm-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
with:
username: ${{ secrets.SAUCE_USERNAME }}
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}
noSSLBumpDomains: all
noProxyCaching: true
tunnelIdentifier: github-action-tunnel
- run: npm test
env:
Expand Down
6 changes: 3 additions & 3 deletions karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ if (process.env.CI) {
defaultBrowsers = [
'SL_EDGE',
'SL_CHROME',
'SL_FIREFOX',
'SL_ANDROID',
// 'SL_FIREFOX',
// 'SL_ANDROID', // nuking for now
'SL_SAFARI'
];
reporters.push('saucelabs');
Expand Down Expand Up @@ -68,7 +68,7 @@ const customLaunchers = {
base: 'SauceLabs',
browserName: 'safari',
browserVersion: 'latest',
platformName: 'macOS 10.15'
platformName: 'macOS 11'
},
SL_IE10: {
base: 'SauceLabs',
Expand Down
Loading