Merge remote-tracking branch 'origin/main' into pnpm10 #2749
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
| # Ensures packages test correctly | |
| name: Test Packages | |
| on: | |
| push: | |
| jobs: | |
| test: | |
| name: Test Packages | |
| runs-on: ubuntu-xl | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Configure Playwright | |
| run: | | |
| pnpm exec playwright install-deps | |
| pnpm exec playwright install | |
| - name: Build | |
| run: pnpm build:packages | |
| - name: Test | |
| run: pnpm test |