fix: pass sort parameter to fetchIssuesForState (#96) #540
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: | |
| pull_request: | |
| push: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: v2.x | |
| - name: Generate GraphQL code | |
| run: deno task codegen | |
| - name: Check formatting | |
| run: deno fmt --check | |
| - name: Lint code | |
| run: deno lint | |
| - name: Type check | |
| run: deno task check | |
| - name: Run tests | |
| run: deno task test |