Skip to content

Commit

Permalink
Merge pull request #16461 from mvdbeek/chromedriver_bump
Browse files Browse the repository at this point in the history
[22.05] Bump version of chromedriver setup action
  • Loading branch information
mvdbeek committed Jul 26, 2023
2 parents d3f9a33 + b9c07a7 commit 075e630
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/integration_selenium.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
setup-selenium:
uses: ./.github/workflows/setup_selenium.yaml
test:
name: Test
needs: setup-selenium
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -66,7 +69,6 @@ jobs:
- uses: mvdbeek/gha-yarn-cache@master
with:
yarn-lock-file: 'galaxy root/client/yarn.lock'
- uses: nanasess/setup-chromedriver@v1
- name: Run tests
run: ./run_tests.sh --coverage -integration test/integration_selenium
working-directory: 'galaxy root'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/selenium.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
setup-selenium:
uses: ./.github/workflows/setup_selenium.yaml
test:
name: Test
needs: setup-selenium
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -66,7 +69,6 @@ jobs:
- uses: mvdbeek/gha-yarn-cache@master
with:
yarn-lock-file: 'galaxy root/client/yarn.lock'
- uses: nanasess/setup-chromedriver@v1
- name: Run tests
run: ./run_tests.sh --coverage -selenium lib/galaxy_test/selenium -- --num-shards=3 --shard-id=${{ matrix.chunk }}
working-directory: 'galaxy root'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/selenium_beta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,11 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
setup-selenium:
uses: ./.github/workflows/setup_selenium.yaml
test:
name: Test
needs: setup-selenium
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -68,7 +71,6 @@ jobs:
- uses: mvdbeek/gha-yarn-cache@master
with:
yarn-lock-file: 'galaxy root/client/yarn.lock'
- uses: nanasess/setup-chromedriver@v1
- name: Run tests
run: ./run_tests.sh --coverage -selenium lib/galaxy_test/selenium -- --num-shards=3 --shard-id=${{ matrix.chunk }}
working-directory: 'galaxy root'
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/setup_selenium.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
on:
workflow_call:
jobs:
setup_chromedriver:
runs-on: ubuntu-latest
steps:
- name: Install chromedriver
uses: mvdbeek/setup-chromedriver@chromedriver_puppeteer

0 comments on commit 075e630

Please sign in to comment.