Update playwright driver to 1.50.1 #732
This file contains 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: Windows check | |
on: [pull_request] | |
jobs: | |
windows_chrome_rspec: | |
name: Chrome | |
runs-on: windows-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.1 | |
bundler-cache: true | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install playwright driver via npx | |
run: | | |
npx playwright@next install chromium | |
npx playwright@next install-deps chromium | |
- run: bundle exec ruby development/generate_api.rb | |
- name: Check example | |
run: bundle exec rspec spec/integration/example_spec.rb | |
env: | |
PLAYWRIGHT_CLI_EXECUTABLE_PATH: npx playwright@next | |
timeout-minutes: 5 |