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:
|
2021-08-17 12:25:11 +00:00
|
|
|
Setup:
|
|
|
|
name: Setup for Jobs
|
|
|
|
runs-on: ubuntu-latest
|
2021-01-17 19:06:24 +00:00
|
|
|
|
2021-08-17 12:25:11 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Cache node modules
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: ${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}-
|
|
|
|
${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-
|
|
|
|
- name: Install Node Dependencies
|
|
|
|
run: npm install
|
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:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Cache node modules
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: ${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}-
|
|
|
|
${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-
|
|
|
|
- name: Install Node Dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Save Code Linting Report JSON
|
|
|
|
run: npm run lint:js:report
|
|
|
|
# Continue to the next step even if this fails
|
|
|
|
continue-on-error: true
|
|
|
|
- name: Upload ESLint report
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: eslint_report.json
|
|
|
|
path: eslint_report.json
|
|
|
|
- name: Annotate Code Linting Results
|
|
|
|
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:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Cache node modules
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: ${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-${{ env.cache-name }}-
|
|
|
|
${{ runner.OS }}-build-${{ secrets.CACHE_VERSION }}-
|
|
|
|
- name: Install Node Dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Lint CSS
|
|
|
|
run: npm run lint:css
|