chore(deps): update dependency @eslint/eslintrc to v3.3.4 (#1779) #5197
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: Lint & E2E | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: [main] | |
| jobs: | |
| lint_build: | |
| name: Lint & Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| with: | |
| node-version: 22.12.0 | |
| - name: Lint | |
| run: pnpm lint | |
| e2e: | |
| name: E2E tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| with: | |
| node-version: 22.12.0 | |
| - name: Build library | |
| run: pnpm build | |
| - name: Cypress run | |
| uses: cypress-io/github-action@v5 | |
| with: | |
| install: false | |
| record: true | |
| start: pnpm demo:http-server | |
| wait-on: 'http://127.0.0.1:8080/lighthouse-viewer/' | |
| command: pnpm cypress:run | |
| env: | |
| CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |