Skip to content

Merge pull request #70 from Pyotato/36-use_useinfinitequery_to_fetch_… #88

Merge pull request #70 from Pyotato/36-use_useinfinitequery_to_fetch_…

Merge pull request #70 from Pyotato/36-use_useinfinitequery_to_fetch_… #88

Workflow file for this run

name: Code Check
on:
push:
branches:
- main
- dev
pull_request: {}
concurrency:
group: ${{ github.job }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: ⬣ ESLint, Κ¦ TypeScript, πŸ’… Prettier, and πŸƒ Test
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v2
- name: βŽ” Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: 🧢 Install yarn
run: yarn install
- name: πŸ“₯ Download deps
uses: u0reo/npm-install@fix/restore-failure
with:
useRollingCache: true
- name: πŸ”¬ Lint
run: yarn lint:strict
- name: πŸ”Ž Type check
run: yarn typecheck
- name: πŸ’… Prettier check
run: yarn format:check
- name: πŸƒ Run jest
run: yarn test