Skip to content

build(deps): bump selenium-webdriver from 4.20.0 to 4.21.0 #2391

build(deps): bump selenium-webdriver from 4.20.0 to 4.21.0

build(deps): bump selenium-webdriver from 4.20.0 to 4.21.0 #2391

Workflow file for this run

name: 🏗️ Main CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
test:
name: ${{ matrix.version }}
strategy:
fail-fast: false
matrix:
version: [min, 1.88.1, max]
uses: ./.github/workflows/template-main.yaml
with:
version: ${{ matrix.version }}
check:
if: always()
runs-on: ubuntu-latest
name: 🚦 Status Check
needs: [test]
steps:
- name: ℹ️ Test Matrix Result
run: |
echo result = ${{ needs.test.result }}
- name: ✅ Status Check - success
if: ${{ needs.test.result == 'success' }}
run: |
echo "All tests successfully completed!"
exit 0
- name: ❌ Status Check - failure
if: ${{ needs.test.result != 'success' }}
run: |
echo "Status Check failed!"
exit 1