[full-ci][tests-only] test: convert groups.feature test to playwright #39
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: Test and build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 | |
| with: | |
| version: 10.29.2 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f | |
| with: | |
| node-version: 24 | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Check licenses | |
| run: pnpm licenses:check | |
| - name: Save licenses | |
| run: pnpm licenses:csv && pnpm licenses:save | |
| - name: Check types | |
| run: pnpm check:types | |
| - name: Check format | |
| run: pnpm check:format | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Run unit tests | |
| run: pnpm test:unit | |
| - name: Build | |
| run: make dist |