New patching system #20
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: Check | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| types-and-svelte: | |
| name: Check typing and Svelte | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| - uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 | |
| - name: Install dependencies | |
| run: | | |
| bun install | |
| bunx wxt prepare | |
| - name: Add TypeScript annotations matcher | |
| run: | | |
| echo "::add-matcher::.github/tsc.json" | |
| - name: Run tsc check | |
| run: bun run check:tsc | |
| - name: Run Svelte check | |
| run: bun run check:svelte |