fix(deps): update debug to 4.3.7 #505
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: example-docker | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
docker-browsers: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
browser: [chrome, edge, electron, firefox] | |
# from https://hub.docker.com/r/cypress/browsers/tags | |
container: | |
image: cypress/browsers:node-20.14.0-chrome-126.0.6478.114-1-ff-127.0.1-edge-126.0.2592.61-1 | |
options: --user 1001 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# replace with the following for regular use: | |
# uses: cypress-io/github-action@v6 | |
- name: Cypress tests | |
uses: ./ | |
with: | |
working-directory: examples/basic | |
browser: ${{ matrix.browser }} |