feat: add img placeholder + update tiddl fix #57 (#60) #446
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: ESLint | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ "main" ] | |
jobs: | |
eslint: | |
name: Run eslint scanning | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install ESLint + Prettier | |
run: | | |
npm install -g [email protected] | |
npm install @eslint/[email protected] | |
npm install [email protected] | |
npm install [email protected] | |
npm install [email protected] | |
npm install [email protected] | |
npm install [email protected] | |
npm install [email protected] | |
npm install [email protected] | |
npm install [email protected] | |
- name: Check code lint and format for API | |
run: eslint -c ./api/eslint.config.mjs . | |
- name: Check code lint and format for APP | |
run: eslint -c ./app/eslint.config.mjs . | |
- name: Check code lint and format for E2E | |
run: eslint -c ./e2e/eslint.config.mjs . | |