Skip to content

fix(deps): update all non-major dependencies (#84) #246

fix(deps): update all non-major dependencies (#84)

fix(deps): update all non-major dependencies (#84) #246

Workflow file for this run

name: lint
env:
# skip playwright binary install
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
on:
push:
branches:
- 'main'
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v6
- name: install pnpm
uses: pnpm/action-setup@26f6d4f2c533a43e6b5da0b4a5dd983f98f7b49a # v6
- name: setup Node
uses: actions/setup-node@v6
with:
node-version: '20.x'
cache: pnpm
- name: Install deps
run: pnpm install
- name: Run lint
run: pnpm run lint
- name: Run format
run: pnpm run format --check