chore(deps): update yarn to v4.17.1 #5349
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: E2E Tests | |
| on: | |
| pull_request: | |
| paths: | |
| - 'e2e-tests/**' | |
| push: | |
| branches: | |
| - "main" | |
| - "release-*" | |
| paths: | |
| - 'e2e-tests/**' | |
| jobs: | |
| lint: | |
| name: TSC, ESLint, ShellCheck and Prettier | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | |
| with: | |
| node-version-file: ".nvmrc" | |
| - name: Install dependencies root | |
| working-directory: . | |
| run: yarn install | |
| - name: Install dependencies e2e-tests | |
| working-directory: ./e2e-tests | |
| run: yarn install --mode=skip-build | |
| - name: Run TypeScript Compiler check | |
| working-directory: ./e2e-tests | |
| run: yarn tsc:check | |
| - name: Run ESLint check | |
| working-directory: ./e2e-tests | |
| run: yarn lint:check | |
| - name: Run ShellCheck | |
| working-directory: ./e2e-tests | |
| run: yarn shellcheck | |
| - name: Run Prettier check | |
| working-directory: ./e2e-tests | |
| run: yarn prettier:check |