DBI-609: Add IAM auth support for CDC pipes with AWS Auruora' (#4495) #6618
This file contains hidden or 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 UI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| paths: [ui/**] | |
| permissions: | |
| checks: write | |
| contents: write | |
| jobs: | |
| run-linters: | |
| name: Run UI linters | |
| strategy: | |
| matrix: | |
| runner: [ubuntu-24.04] | |
| runs-on: ${{ matrix.runner }} | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: generate or hydrate protos | |
| uses: ./.github/actions/genprotos | |
| - name: Install Node.js dependencies | |
| working-directory: ui | |
| run: npm ci | |
| - name: lint | |
| uses: wearerequired/lint-action@548d8a7c4b04d3553d32ed5b6e91eb171e10e7bb # v2 | |
| with: | |
| eslint: true | |
| prettier: true | |
| eslint_dir: ui | |
| prettier_dir: ui | |
| eslint_args: "--max-warnings 0" | |
| eslint_extensions: js,ts,jsx,tsx | |
| prettier_extensions: js,ts,jsx,tsx,json |