chore(deps): update dependency @testing-library/cypress to v10.1.3 #48918
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
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| name: Config check | |
| permissions: | |
| contents: read | |
| actions: write | |
| jobs: | |
| detect_changes: | |
| name: Config check - Detect changes | |
| runs-on: ubuntu-latest | |
| outputs: | |
| RUN_CHECKS: ${{ steps.detect_code_changes.outputs.RUN_CHECKS }} | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Detect code changes | |
| id: detect_code_changes | |
| uses: ./.github/actions/detect-changes | |
| configCheck: | |
| needs: [detect_changes] | |
| name: Dependencies and tsconfig files | |
| runs-on: ubuntu-latest | |
| if: ${{ needs.detect_changes.outputs.RUN_CHECKS == 'true' }} | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Cancel Previous Runs | |
| uses: styfle/cancel-workflow-action@d07a454dad7609a92316b57b23c9ccfd4f59af66 # 0.13.1 | |
| with: | |
| access_token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 #v4.4.0 | |
| with: | |
| node-version: '20' | |
| - name: NPM | |
| run: npm ci | |
| - name: Check configurations | |
| run: npm run config:check | |
| env: | |
| FORCE_COLOR: 2 # Support colors from chalk |