Optimized all firebase calls to use tanstack query (react query) #22
Workflow file for this run
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: Prettier Code Format Check | |
on: [pull_request] | |
jobs: | |
prettier-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "21" # Use whatever node version your project requires | |
- name: Install Prettier | |
run: yarn add prettier --dev | |
- name: Check code formatting | |
run: yarn pretty --check |