Added more logic to filter, created FilterDialog.tsx #235
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: Linting and Formatting Check | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint-and-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
- name: Install dependencies | |
run: npm install --save-dev | |
- name: Prettier Check | |
run: npx prettier ./Eplant --check | |
- name: ESLint Check | |
if: always() | |
run: npm run lint |