chore(deps): update dependency eslint to v10.0.3 (#1677) #614
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-firefox | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| firefox: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Firefox | |
| uses: ./ # if copying, replace with cypress-io/github-action@v7 | |
| timeout-minutes: 3 | |
| with: | |
| # let's show browser and system info | |
| build: npx cypress info | |
| working-directory: examples/browser | |
| browser: firefox | |
| # report screenshot size and store the screenshots as test artifacts | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: screenshots-in-firefox | |
| path: examples/browser/cypress/screenshots | |
| - run: npx image-size cypress/screenshots/**/*.png | |
| working-directory: examples/browser |