Skip to content

Update playwright #3083

Update playwright

Update playwright #3083

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'
- name: Install Playwright dependencies
run: yarn install --frozen-lockfile
- run: npx playwright install-deps
- run: yarn run playwright install
- run: yarn build
- name: Lint
run: yarn lint
- name: Unit Test
run: yarn test:unit
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v3
with:
name: turbo-dist
path: dist/*