fix(deps): update all non-major dependencies (#84) #246
This file contains hidden or 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@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 |