2022-06-09 12:43:17 +00:00
|
|
|
name: JavaScript, CSS and Markdown Linting
|
2020-10-18 16:49:59 +00:00
|
|
|
|
|
|
|
on:
|
2021-08-17 12:25:11 +00:00
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches: [trunk]
|
2022-08-03 12:00:15 +00:00
|
|
|
permissions:
|
|
|
|
actions: write
|
2022-08-04 09:06:13 +00:00
|
|
|
checks: write
|
|
|
|
pull-requests: read
|
2020-10-18 16:49:59 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-03-23 07:41:43 +00:00
|
|
|
# cache node and modules
|
2021-08-17 12:25:11 +00:00
|
|
|
Setup:
|
2022-03-23 07:41:43 +00:00
|
|
|
name: Setup
|
2021-08-17 12:25:11 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-01-17 19:06:24 +00:00
|
|
|
|
2021-08-17 12:25:11 +00:00
|
|
|
steps:
|
2022-03-23 07:41:43 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-05-24 11:42:54 +00:00
|
|
|
|
|
|
|
- name: Cache node_modules
|
|
|
|
id: cache-node-modules
|
|
|
|
uses: actions/cache@v3
|
|
|
|
env:
|
|
|
|
cache-name: cache-node-modules
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
|
2022-03-23 07:41:43 +00:00
|
|
|
- name: Setup node version and npm cache
|
|
|
|
uses: actions/setup-node@v3
|
2021-08-17 12:25:11 +00:00
|
|
|
with:
|
2022-03-23 07:41:43 +00:00
|
|
|
node-version-file: '.nvmrc'
|
|
|
|
cache: 'npm'
|
2022-05-24 11:42:54 +00:00
|
|
|
|
|
|
|
- name: Install Node Dependencies
|
|
|
|
if: steps.cache-node-modules.outputs.cache-hit != 'true'
|
2022-03-23 07:41:43 +00:00
|
|
|
run: npm ci --no-optional
|
2020-10-18 16:49:59 +00:00
|
|
|
|
2021-08-17 12:25:11 +00:00
|
|
|
JSLintingCheck:
|
|
|
|
name: Lint JavaScript
|
|
|
|
needs: Setup
|
|
|
|
runs-on: ubuntu-latest
|
2020-10-18 16:49:59 +00:00
|
|
|
|
2021-08-17 12:25:11 +00:00
|
|
|
steps:
|
2022-03-23 07:41:43 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-05-24 11:42:54 +00:00
|
|
|
|
|
|
|
- name: Cache node_modules
|
|
|
|
id: cache-node-modules
|
|
|
|
uses: actions/cache@v3
|
|
|
|
env:
|
|
|
|
cache-name: cache-node-modules
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
|
|
|
|
- name: Setup node version
|
2022-03-23 07:41:43 +00:00
|
|
|
uses: actions/setup-node@v3
|
2021-08-17 12:25:11 +00:00
|
|
|
with:
|
2022-03-23 07:41:43 +00:00
|
|
|
node-version-file: '.nvmrc'
|
2022-05-24 11:42:54 +00:00
|
|
|
|
2022-03-23 07:41:43 +00:00
|
|
|
- name: Save code linting report JSON
|
2021-08-17 12:25:11 +00:00
|
|
|
run: npm run lint:js:report
|
|
|
|
# Continue to the next step even if this fails
|
|
|
|
continue-on-error: true
|
|
|
|
- name: Upload ESLint report
|
2022-03-23 07:41:43 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-08-17 12:25:11 +00:00
|
|
|
with:
|
|
|
|
name: eslint_report.json
|
|
|
|
path: eslint_report.json
|
2022-03-23 07:41:43 +00:00
|
|
|
- name: Annotate code linting results
|
2023-02-21 08:32:08 +00:00
|
|
|
uses: ataylorme/eslint-annotate-action@v2
|
2021-08-17 12:25:11 +00:00
|
|
|
with:
|
|
|
|
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|
|
|
|
report-json: 'eslint_report.json'
|
2020-10-18 16:49:59 +00:00
|
|
|
|
2021-08-17 12:25:11 +00:00
|
|
|
CSSLintingCheck:
|
|
|
|
name: Lint CSS
|
|
|
|
needs: Setup
|
|
|
|
runs-on: ubuntu-latest
|
2020-10-18 16:49:59 +00:00
|
|
|
|
2021-08-17 12:25:11 +00:00
|
|
|
steps:
|
2022-03-23 07:41:43 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-05-24 11:42:54 +00:00
|
|
|
- name: Cache node_modules
|
|
|
|
id: cache-node-modules
|
|
|
|
uses: actions/cache@v3
|
|
|
|
env:
|
|
|
|
cache-name: cache-node-modules
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
|
|
|
|
- name: Setup node version
|
2022-03-23 07:41:43 +00:00
|
|
|
uses: actions/setup-node@v3
|
2021-08-17 12:25:11 +00:00
|
|
|
with:
|
2022-03-23 07:41:43 +00:00
|
|
|
node-version-file: '.nvmrc'
|
2022-05-24 11:42:54 +00:00
|
|
|
|
2021-08-17 12:25:11 +00:00
|
|
|
- name: Lint CSS
|
|
|
|
run: npm run lint:css
|
2022-06-09 12:43:17 +00:00
|
|
|
|
|
|
|
MDLintingCheck:
|
|
|
|
name: Lint MD
|
|
|
|
needs: Setup
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup node version and npm cache
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version-file: '.nvmrc'
|
|
|
|
cache: 'npm'
|
|
|
|
- name: Install Node dependencies
|
|
|
|
run: npm ci --no-optional
|
|
|
|
- name: Lint MD
|
|
|
|
run: npm run lint:md:docs
|