test: remove fixme from with-proxy>restart #132
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 | |
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@v4 | |
- name: install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: setup Node | |
uses: actions/setup-node@v4 | |
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 prettier --check . | |
- name: Run type check | |
run: pnpm run type-check |