Remove recording options section from the Playwright's overview page #272
This file contains 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: Lint | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
jobs: | |
trunk_check_runner: | |
name: Trunk Check runner | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 8 | |
- uses: volta-cli/action@v4 | |
with: | |
node-version: 20.12.0 | |
- name: Install packages | |
run: pnpm install | |
- name: Lint | |
run: pnpm run lint | |
- name: Next Build (because it's more strict) | |
run: pnpm run build | |
env: | |
NEXT_PUBLIC_SITE_URL: 'https://replay.io' | |
- name: Check formatting | |
run: pnpm run prettier:ci |