WIP: feat: add migrating to v2 solid-start guide #2679
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 / Type Checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| actions: read | |
| security-events: read | |
| jobs: | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Install tools & dependencies | |
| uses: ./.github/actions/install | |
| - name: Generate virtual modules | |
| run: pnpm sync | |
| - name: TypeScript check | |
| run: pnpm check:types | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Install tools & dependencies | |
| uses: ./.github/actions/install | |
| - name: Lint code | |
| run: pnpm check:lint |