2021-08-19 12:27:01 +00:00
|
|
|
name: Lint
|
2022-01-13 18:09:37 +00:00
|
|
|
on:
|
2022-03-28 19:21:31 +00:00
|
|
|
pull_request_target:
|
2022-01-13 18:09:37 +00:00
|
|
|
branches:
|
|
|
|
- main
|
2022-07-05 01:13:51 +00:00
|
|
|
paths:
|
2022-07-06 15:28:09 +00:00
|
|
|
- '**.tsx?'
|
|
|
|
- '**.jsx?'
|
2021-08-19 12:27:01 +00:00
|
|
|
jobs:
|
|
|
|
lint:
|
2022-03-26 00:39:38 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-06-13 18:31:35 +00:00
|
|
|
node: ["16.x"]
|
2022-03-26 00:39:38 +00:00
|
|
|
os: [ubuntu-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2021-08-19 12:27:01 +00:00
|
|
|
|
|
|
|
steps:
|
2022-03-22 14:52:47 +00:00
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@v2
|
2021-08-19 12:27:01 +00:00
|
|
|
with:
|
2022-03-28 19:21:31 +00:00
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
fetch-depth: 2
|
2021-08-19 12:27:01 +00:00
|
|
|
|
2022-05-18 04:30:16 +00:00
|
|
|
- name: Use Node ${{ matrix.node }}
|
|
|
|
uses: actions/setup-node@v3
|
2021-08-19 12:27:01 +00:00
|
|
|
with:
|
2022-03-26 00:39:38 +00:00
|
|
|
node-version: ${{ matrix.node }}
|
2022-05-18 04:30:16 +00:00
|
|
|
cache: "yarn"
|
2021-08-19 12:27:01 +00:00
|
|
|
|
|
|
|
- name: Install deps
|
2022-03-09 17:52:48 +00:00
|
|
|
if: steps.yarn-cache.outputs.cache-hit != 'true'
|
2022-05-18 04:30:16 +00:00
|
|
|
run: yarn --frozen-lockfile
|
2021-08-19 12:27:01 +00:00
|
|
|
|
|
|
|
- name: Lint
|
2022-03-09 17:52:48 +00:00
|
|
|
run: yarn lint:report
|
|
|
|
continue-on-error: true
|
|
|
|
|
|
|
|
- name: Merge lint reports
|
|
|
|
run: jq -s '[.[]]|flatten' lint-results/*.json &> lint-results/eslint_report.json
|
|
|
|
|
|
|
|
- name: Annotate Code Linting Results
|
|
|
|
uses: ataylorme/eslint-annotate-action@1.2.0
|
|
|
|
with:
|
|
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
report-json: "lint-results/eslint_report.json"
|
|
|
|
|
|
|
|
- name: Upload ESLint report
|
|
|
|
if: ${{ always() }}
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: lint-results
|
|
|
|
path: lint-results
|