chore(deps): update dependency node to v20.19.5 #1341
  
    
      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-docker | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| docker-browsers: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| browser: [chrome, edge, electron, firefox] | |
| # Cypress Docker image documentation on https://github.com/cypress-io/cypress-docker-images | |
| # Available cypress/browsers tags listed on https://hub.docker.com/r/cypress/browsers/tags | |
| container: | |
| image: cypress/browsers:24.11.0 | |
| options: --user 1001 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Cypress tests | |
| uses: ./ # if copying, replace with cypress-io/github-action@v6 | |
| with: | |
| working-directory: examples/basic | |
| browser: ${{ matrix.browser }} |