Update apps/web/src/app/admin-console/organizations/core/services/gro… #42125
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 | |
on: | |
push: | |
branches-ignore: | |
- 'l10n_master' | |
- 'cf-pages' | |
paths-ignore: | |
- '.github/workflows/**' | |
workflow_dispatch: | |
inputs: {} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
- name: Lint filenames (no capital characters) | |
run: | | |
find . -type f,d -name "*[[:upper:]]*" \ | |
! -path "./node_modules/*" \ | |
! -path "./coverage/*" \ | |
! -path "*/dist/*" \ | |
! -path "*/build/*" \ | |
! -path "*/target/*" \ | |
! -path "./.git/*" \ | |
! -path "*/.DS_Store" \ | |
! -path "*/*locales/*" \ | |
! -path "./.github/*" \ | |
! -path "*/Cargo.toml" \ | |
! -path "*/Cargo.lock" \ | |
> tmp.txt | |
diff <(sort .github/whitelist-capital-letters.txt) <(sort tmp.txt) | |
- name: Get Node Version | |
id: retrieve-node-version | |
run: | | |
NODE_NVMRC=$(cat .nvmrc) | |
NODE_VERSION=${NODE_NVMRC/v/''} | |
echo "node_version=$NODE_VERSION" >> $GITHUB_OUTPUT | |
- name: Set up Node | |
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
with: | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
node-version: ${{ steps.retrieve-node-version.outputs.node_version }} | |
- name: Run linter | |
run: | | |
npm ci | |
npm run lint |