2023-01-30 09:44:03 +11:00
|
|
|
name: JavaScript Linting
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- 'dependabot/**'
|
2023-06-06 18:42:23 +10:00
|
|
|
- 'renovate/**'
|
2023-01-30 09:44:03 +11:00
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
2023-04-05 00:32:08 +10:00
|
|
|
- 'tsconfig.json'
|
2023-02-16 14:59:45 +11:00
|
|
|
- '.nvmrc'
|
2023-01-30 09:44:03 +11:00
|
|
|
- '.prettier*'
|
|
|
|
- '.eslint*'
|
|
|
|
- '**/*.js'
|
2023-02-20 13:20:59 +11:00
|
|
|
- '**/*.jsx'
|
2023-04-05 00:32:08 +10:00
|
|
|
- '**/*.ts'
|
|
|
|
- '**/*.tsx'
|
2023-01-30 09:44:03 +11:00
|
|
|
- '.github/workflows/lint-js.yml'
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
2023-04-05 00:32:08 +10:00
|
|
|
- 'tsconfig.json'
|
2023-02-16 14:59:45 +11:00
|
|
|
- '.nvmrc'
|
2023-01-30 09:44:03 +11:00
|
|
|
- '.prettier*'
|
|
|
|
- '.eslint*'
|
|
|
|
- '**/*.js'
|
2023-02-20 13:20:59 +11:00
|
|
|
- '**/*.jsx'
|
2023-04-05 00:32:08 +10:00
|
|
|
- '**/*.ts'
|
|
|
|
- '**/*.tsx'
|
2023-01-30 09:44:03 +11:00
|
|
|
- '.github/workflows/lint-js.yml'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
2023-09-11 18:41:26 +10:00
|
|
|
uses: actions/checkout@v4
|
2023-01-30 09:44:03 +11:00
|
|
|
|
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: yarn
|
2023-02-16 12:24:05 +11:00
|
|
|
node-version-file: '.nvmrc'
|
2023-01-30 09:44:03 +11:00
|
|
|
|
|
|
|
- name: Install all yarn packages
|
|
|
|
run: yarn --frozen-lockfile
|
|
|
|
|
|
|
|
- name: ESLint
|
2023-06-01 10:25:13 +10:00
|
|
|
run: yarn lint:js --max-warnings 0
|
2023-04-05 00:32:08 +10:00
|
|
|
|
|
|
|
- name: Typecheck
|
2023-06-01 10:25:13 +10:00
|
|
|
run: yarn typecheck
|