chore(deps): update cypress to 13.7.0 🌟 #513
Workflow file for this run
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: Chrome Docker | |
on: [push, workflow_dispatch] | |
jobs: | |
# run Chrome inside a Docker container | |
chrome: | |
runs-on: ubuntu-22.04 | |
# https://github.com/cypress-io/cypress-docker-images | |
container: cypress/browsers:node-20.9.0-chrome-118.0.5993.88-1-ff-118.0.2-edge-118.0.2088.46-1 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Chrome | |
uses: cypress-io/github-action@v6 | |
timeout-minutes: 10 | |
with: | |
build: npm run build | |
start: npm start | |
browser: chrome |