Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Use GitHub Actions instead of Travis. #121

Merged
merged 7 commits into from
Jan 7, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Move custom Sauce browser list inline into the test workflow to avoid…
… `--skip-plugin`.
  • Loading branch information
bicknellr committed Jan 7, 2021
commit 39c050508d23489350f772aabb17737c29a8b7d9
14 changes: 12 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
format".' && false)

- name: Test in local browsers (Chrome/Firefox)
run: polymer test --module-resolution node --npm --skip-plugin sauce
run: polymer test --module-resolution node --npm

wct-sauce:
# Skip if this is from a forked repository because we can't access Sauce
Expand Down Expand Up @@ -56,4 +56,14 @@ jobs:
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
run: polymer test --module-resolution node --npm --sauce 'default'
run: >-
polymer test --module-resolution node --npm
--sauce 'Windows 10/microsoftedge'
--sauce 'Windows 10/internet explorer@11'
--sauce 'macOS 10.13/safari@11'
--sauce 'OS X 10.11/safari@10'
--sauce 'OS X 10.11/safari@9'
--sauce 'Linux/chrome'
--sauce 'Windows 10/chrome@beta'
--sauce 'Windows 10/chrome'
--sauce 'Windows 10/firefox'
49 changes: 0 additions & 49 deletions wct.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,55 +11,6 @@
"-headless"
]
}
},
"sauce": {
"browsers": [
{
"browserName": "microsoftedge",
"platform": "Windows 10",
"version": ""
},
{
"browserName": "internet explorer",
"platform": "Windows 8.1",
"version": "11"
},
{
"browserName": "safari",
"platform": "macOS 10.13",
"version": "11"
},
{
"browserName": "safari",
"platform": "OS X 10.11",
"version": "10"
},
{
"browserName": "safari",
"platform": "OS X 10.11",
"version": "9"
},
{
"browserName": "chrome",
"platform": "Linux",
"version": ""
},
{
"browserName": "chrome",
"platform": "Windows 10",
"version": "beta"
},
{
"browserName": "chrome",
"platform": "Windows 10",
"version": ""
},
{
"browserName": "firefox",
"platform": "Windows 10",
"version": ""
}
]
}
}
}