* refactor: eliminate eslint errors as many as I can * refactor: fix more eslint errors in the record module * LINT: fix @typescript-eslint/unbound-method * LINT: fix all eslint errors in source code * LINT: fix as many eslint warnings as possible * CI: add a github action to check ESLINT status * CI: update github action * build: update travis CI and github action * CI: update github action * CI: update job name * CI: restore test command from turbo to lerna * Merge branch master into eslint-action Co-authored-by: Justin Halsall <Juice10@users.noreply.github.com>
37 lines
1009 B
YAML
37 lines
1009 B
YAML
name: Eslint Check
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
eslint_check_upload:
|
|
runs-on: ubuntu-latest
|
|
name: ESLint Check and Report Upload
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
cache: 'yarn'
|
|
- name: Install Dependencies
|
|
run: yarn
|
|
- name: Build Packages
|
|
run: yarn build:all
|
|
- name: Test Code Linting
|
|
run: yarn turbo run lint
|
|
- name: Save Code Linting Report JSON
|
|
run: yarn lint:report
|
|
# Continue to the next step even if this fails
|
|
continue-on-error: true
|
|
- name: Annotate Code Linting Results
|
|
uses: ataylorme/eslint-annotate-action@v2
|
|
with:
|
|
repo-token: '${{ secrets.GITHUB_TOKEN }}'
|
|
report-json: 'eslint_report.json'
|
|
- name: Upload ESLint report
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: eslint_report.json
|
|
path: eslint_report.json
|