fix(ui-toggle-details,ui-expandable): improve typing for onClick prop #4812
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: 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: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Bootstrap project | |
| run: npm run bootstrap | |
| - name: Lint commits | |
| run: npm run lint:commits | |
| - name: Lint code | |
| run: npm run lint:changes | |
| vitest-tests: | |
| name: Vitest unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Bootstrap project | |
| run: npm run bootstrap | |
| - name: Run vitest unit tests | |
| run: npm run test:vitest | |
| cypress: | |
| name: Cypress component tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Bootstrap project | |
| run: npm run bootstrap | |
| - name: Run Cypress components tests | |
| run: npm run cy:component | |