2020-10-18 16:49:59 +00:00
|
|
|
name: JavaScript and CSS Linting
|
|
|
|
|
|
|
|
on:
|
2021-08-17 12:25:11 +00:00
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches: [trunk]
|
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
|
|
|
|
- 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'
|
|
|
|
- name: Install Node dependencies
|
|
|
|
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
|
|
|
|
- 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'
|
|
|
|
- name: Install Node dependencies
|
|
|
|
run: npm ci --no-optional
|
|
|
|
- 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
|
2021-08-17 12:25:11 +00:00
|
|
|
uses: ataylorme/eslint-annotate-action@1.2.0
|
|
|
|
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
|
|
|
|
- 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'
|
|
|
|
- name: Install Node dependencies
|
|
|
|
run: npm ci --no-optional
|
2021-08-17 12:25:11 +00:00
|
|
|
- name: Lint CSS
|
|
|
|
run: npm run lint:css
|