2023-01-29 22:44:03 +00:00
|
|
|
name: JavaScript Linting
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- 'dependabot/**'
|
2023-06-06 08:42:23 +00:00
|
|
|
- 'renovate/**'
|
2023-01-29 22:44:03 +00:00
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
2023-04-04 14:32:08 +00:00
|
|
|
- 'tsconfig.json'
|
2023-02-16 03:59:45 +00:00
|
|
|
- '.nvmrc'
|
2023-01-29 22:44:03 +00:00
|
|
|
- '.prettier*'
|
|
|
|
- '.eslint*'
|
|
|
|
- '**/*.js'
|
2023-02-20 02:20:59 +00:00
|
|
|
- '**/*.jsx'
|
2023-04-04 14:32:08 +00:00
|
|
|
- '**/*.ts'
|
|
|
|
- '**/*.tsx'
|
2023-01-29 22:44:03 +00:00
|
|
|
- '.github/workflows/lint-js.yml'
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
2023-04-04 14:32:08 +00:00
|
|
|
- 'tsconfig.json'
|
2023-02-16 03:59:45 +00:00
|
|
|
- '.nvmrc'
|
2023-01-29 22:44:03 +00:00
|
|
|
- '.prettier*'
|
|
|
|
- '.eslint*'
|
|
|
|
- '**/*.js'
|
2023-02-20 02:20:59 +00:00
|
|
|
- '**/*.jsx'
|
2023-04-04 14:32:08 +00:00
|
|
|
- '**/*.ts'
|
|
|
|
- '**/*.tsx'
|
2023-01-29 22:44:03 +00:00
|
|
|
- '.github/workflows/lint-js.yml'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
2023-09-11 08:41:26 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-01-29 22:44:03 +00:00
|
|
|
|
2023-10-24 11:43:24 +00:00
|
|
|
- name: Set up Javascript environment
|
|
|
|
uses: ./.github/actions/setup-javascript
|
2023-01-29 22:44:03 +00:00
|
|
|
|
|
|
|
- name: ESLint
|
2023-06-01 00:25:13 +00:00
|
|
|
run: yarn lint:js --max-warnings 0
|
2023-04-04 14:32:08 +00:00
|
|
|
|
|
|
|
- name: Typecheck
|
2023-06-01 00:25:13 +00:00
|
|
|
run: yarn typecheck
|