[v12] feat(ui-list): List rework #5903
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: AUTO Pull Request validation | |
| on: [pull_request] | |
| jobs: | |
| lint: | |
| name: Lint commit msg + code | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Bootstrap project | |
| run: pnpm run bootstrap | |
| - name: Lint commits | |
| run: pnpm run lint:commits | |
| - name: Lint code | |
| run: pnpm run lint:changes | |
| vitest-tests: | |
| name: Vitest unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Bootstrap project | |
| run: pnpm run bootstrap | |
| - name: Run vitest unit tests | |
| run: pnpm run test:vitest | |
| cypress: | |
| name: Cypress component tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Install Cypress binary | |
| run: npx cypress install | |
| - name: Bootstrap project | |
| run: pnpm run bootstrap | |
| - name: Run Cypress components tests | |
| run: pnpm run cy:component | |