nexus: CREATE PEER should not include quotes in name (#2445) #4141
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 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: [ubicloud-standard-2-ubuntu-2204-arm] | |
runs-on: ${{ matrix.runner }} | |
steps: | |
- name: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- 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 |