chore(deps): bump pnpm/action-setup from 4 to 6 #212
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: Run Tests | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v6 | |
| with: | |
| version: 10.33.4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'pnpm' | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm --filter @iwer/e2e exec playwright install --with-deps chromium | |
| - run: pnpm build:all | |
| - run: pnpm typecheck | |
| - run: pnpm test:all | |
| - run: pnpm lint | |
| - run: pnpm format:check | |
| - run: pnpm changeset:status | |
| - run: pnpm docs:build | |
| - run: pnpm build:tgz | |
| - run: pnpm examples:build |