chore(deps-dev): Bump selenium-webdriver from 4.41.0 to 4.44.0 #178
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ main ] | |
| permissions: {} | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@3ff19f5e2baf30647122352b96108b1fbe250c64 # v1 | |
| with: | |
| ruby-version: .ruby-version | |
| bundler-cache: true | |
| - name: Trust overcommit config | |
| run: git config --local overcommit.verify false | |
| - name: Install system dependencies | |
| run: sudo apt-get update && sudo apt-get install --no-install-recommends -y google-chrome-stable | |
| - name: Install actionlint | |
| run: | | |
| ACTIONLINT_VERSION=1.7.7 | |
| ACTIONLINT_CHECKSUM=023070a287cd8cccd71515fedc843f1985bf96c436b7effaecce67290e7e0757 | |
| curl -sLO "https://github.com/rhysd/actionlint/releases/download/v${ACTIONLINT_VERSION}/actionlint_${ACTIONLINT_VERSION}_linux_amd64.tar.gz" | |
| echo "${ACTIONLINT_CHECKSUM} actionlint_${ACTIONLINT_VERSION}_linux_amd64.tar.gz" | sha256sum -c - | |
| tar xzf "actionlint_${ACTIONLINT_VERSION}_linux_amd64.tar.gz" | |
| sudo mv actionlint /usr/local/bin/ | |
| - name: Run CI pipeline | |
| env: | |
| RAILS_ENV: test | |
| run: bin/ci | |
| - name: Keep screenshots from failed system tests | |
| uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7 | |
| if: failure() | |
| with: | |
| name: screenshots | |
| path: ${{ github.workspace }}/tmp/screenshots | |
| if-no-files-found: ignore |