Get bulky items on chat click route #436
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: Lint App | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- app/** | |
- "!app/public/locales/**" | |
pull_request: | |
paths: | |
- app/** | |
- "!app/public/locales/**" | |
jobs: | |
lint-app: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: npm | |
cache-dependency-path: app/package-lock.json | |
- name: Install Dependencies App | |
run: npm ci | |
working-directory: ./app | |
- name: Run TypeScript test | |
run: npx tsc | |
working-directory: ./app | |
- name: Run Prettier | |
run: npm run lint:test | |
working-directory: ./app |