Update the skill to handle natural language diffs, change the logic of the server to read the diff from a temp file and not staged/unstaged git invocations #5
Workflow file for this run
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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10.33.2 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm lint | |
| - run: pnpm test | |
| - run: pnpm --filter @askdiff/protocol exec tsc --noEmit | |
| - run: pnpm --filter @askdiff/server exec tsc --noEmit | |
| - run: pnpm --filter @askdiff/ui-browser exec tsc --noEmit |