Bump chromedriver from 143.0.1 to 143.0.2 in /packages/e2e-tests #5406
Workflow file for this run
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: Linters | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: [opened, ready_for_review] | |
| pull_request_review: | |
| types: [submitted] | |
| jobs: | |
| Check: | |
| if: github.event_name == 'workflow_dispatch' || (github.event.pull_request && github.event.pull_request.draft == false) || (github.event.review && (github.event.review.state == 'approved' || contains(github.event.review.body, '/check') || contains(github.event.review.body, '/release-check'))) | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| strategy: | |
| matrix: | |
| suite: [flow, eslint, tsc] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Read .nvmrc | |
| id: nvm | |
| run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '${{ steps.nvm.outputs.NVMRC }}' | |
| cache: 'npm' | |
| - name: Cache node modules | |
| uses: actions/cache@v4 | |
| id: node-modules-cache | |
| with: | |
| path: | | |
| **/node_modules | |
| ~/.npm | |
| key: ${{ runner.os }}-node-${{ steps.nvm.outputs.NVMRC }}-modules-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node-${{ steps.nvm.outputs.NVMRC }}-modules- | |
| ${{ runner.os }}-node-modules- | |
| - name: npm install | |
| if: steps.node-modules-cache.outputs.cache-hit != 'true' | |
| run: | | |
| . install-all.sh | |
| - name: ${{ matrix.suite }} | |
| run: | | |
| npm run ${{ matrix.suite }} |