Skip to content

chore(deps): bump pnpm/action-setup from 4 to 6 #212

chore(deps): bump pnpm/action-setup from 4 to 6

chore(deps): bump pnpm/action-setup from 4 to 6 #212

Workflow file for this run

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