2022-05-03 21:45:37 +02:00
|
|
|
---
|
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- 'l10n_master'
|
2022-06-20 21:16:51 +02:00
|
|
|
- 'cf-pages'
|
2022-05-03 21:45:37 +02:00
|
|
|
paths-ignore:
|
|
|
|
- '.github/workflows/**'
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs: {}
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
name: Lint
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout repo
|
2023-06-29 16:46:56 +02:00
|
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
2022-05-03 21:45:37 +02:00
|
|
|
|
2022-10-18 10:05:33 +02:00
|
|
|
- name: Lint filenames (no capital characters)
|
|
|
|
run: |
|
2022-11-10 15:08:04 +01:00
|
|
|
find . -type f,d -name "*[[:upper:]]*" \
|
2022-10-18 10:05:33 +02:00
|
|
|
! -path "./node_modules/*" \
|
|
|
|
! -path "./coverage/*" \
|
|
|
|
! -path "*/dist/*" \
|
|
|
|
! -path "*/build/*" \
|
|
|
|
! -path "*/target/*" \
|
|
|
|
! -path "./.git/*" \
|
|
|
|
! -path "*/.DS_Store" \
|
2022-11-10 15:08:04 +01:00
|
|
|
! -path "*/*locales/*" \
|
|
|
|
! -path "./.github/*" \
|
2022-10-18 10:05:33 +02:00
|
|
|
> tmp.txt
|
|
|
|
diff <(sort .github/whitelist-capital-letters.txt) <(sort tmp.txt)
|
|
|
|
|
2023-10-04 18:23:40 +02:00
|
|
|
- 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
|
|
|
|
|
2022-05-03 21:45:37 +02:00
|
|
|
- name: Set up Node
|
2023-05-09 18:38:11 +02:00
|
|
|
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
2022-05-03 21:45:37 +02:00
|
|
|
with:
|
|
|
|
cache: 'npm'
|
|
|
|
cache-dependency-path: '**/package-lock.json'
|
2023-10-04 18:23:40 +02:00
|
|
|
node-version: ${{ steps.retrieve-node-version.outputs.node_version }}
|
2022-05-03 21:45:37 +02:00
|
|
|
|
|
|
|
- name: Run linter
|
|
|
|
run: |
|
|
|
|
npm ci
|
|
|
|
npm run lint
|