fix: explicitly declare return type of useSanityQuery
#3290
This file contains 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: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [16] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: "pnpm" | |
- name: 📦 Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: 🚧 Set up project | |
run: pnpm dev:prepare | |
- name: 💪 Test types | |
run: pnpm test:types | |
- name: 🛠 Build project | |
run: pnpm build | |
- name: 💪 Test built types | |
run: pnpm test:types | |
- name: 🧪 Test project | |
run: pnpm test -- --coverage | |
- name: 🟩 Coverage | |
uses: codecov/codecov-action@v3 |