feat: migrate to TanStack Query #59
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: Pull Request Validation | |
| on: | |
| pull_request: | |
| jobs: | |
| code-review: | |
| name: Code format and style check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Code Prettier | |
| run: | | |
| make ts-prettier | |
| - name: Code Linter | |
| run: | | |
| npm install --save-dev @eslint/js | |
| make ts-eslint | |
| - name: Typescript type check | |
| run: | | |
| make ts-tsc |