We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 503ca1e + 562e351 commit c34afdaCopy full SHA for c34afda
.github/workflows/test-changed-auth.yml
@@ -45,13 +45,18 @@ jobs:
45
# Whatever version of Firefox comes with 22.04 is causing Firefox
46
# startup to hang when launched by karma. Need to look further into
47
# why.
48
+
49
runs-on: ubuntu-20.04
50
51
+ # Chrome webdriver version is pinned to avoid install failures like "No such object: chromedriver/LATEST_RELEASE_115.0.5790"
52
+ # These are installed even in the Firefox test due to `yarn` command which pulls the devDependency listed in package.json.
53
steps:
54
- name: install Firefox stable
55
run: |
56
sudo apt-get update
57
sudo apt-get install firefox
58
+ sudo apt-get install wget
59
60
- name: Checkout Repo
61
uses: actions/checkout@master
62
with:
0 commit comments