Fix/searchabledropdown/selected id multiple #493
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: Lint project files | |
on: | |
pull_request: | |
paths: | |
- '**.ts' | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node and install deps | |
uses: ./.github/workflows/actions/node-setup | |
- name: Build project | |
run: pnpm -r build | |
- name: Save Code Linting Report JSON | |
run: pnpm lint:report | |
continue-on-error: true | |
- name: Annotate Code Linting Results | |
uses: ataylorme/[email protected] | |
with: | |
report-json: "eslint-report.log.json" | |
- name: Upload ESLint report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: eslint-report.log.json | |
path: eslint-report.log.json |