Skip to content

Bump @playwright/test from 1.58.2 to 1.60.0 #41

Bump @playwright/test from 1.58.2 to 1.60.0

Bump @playwright/test from 1.58.2 to 1.60.0 #41

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Playwright browsers
run: pnpm exec playwright install --with-deps chromium firefox webkit
- name: Typecheck
run: pnpm run typecheck
- name: Unit tests
run: pnpm run test
- name: Build package
run: pnpm run build
- name: Browser tests
run: pnpm run test:browser
- name: Build DeepAgents example
run: pnpm run example:deepagent:build