chore(deps): update dependency eslint-plugin-cypress to v5 #7
Workflow file for this run
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: example-chrome-for-testing | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Chrome for Testing | |
# https://github.com/browser-actions/setup-chrome | |
uses: browser-actions/setup-chrome@v1 | |
with: | |
chrome-version: 137 | |
- name: Cypress info | |
uses: ./ | |
with: | |
# just for full picture after installing Cypress | |
# print information about detected browsers, etc | |
# see https://on.cypress.io/command-line#cypress-info | |
build: npm run info | |
working-directory: examples/browser | |
browser: chrome-for-testing |