2023-01-29 22:44:03 +00:00
|
|
|
name: JavaScript Linting
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- 'dependabot/**'
|
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
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-01-29 22:44:03 +00:00
|
|
|
- '.github/workflows/lint-js.yml'
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
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-01-29 22:44:03 +00:00
|
|
|
- '.github/workflows/lint-js.yml'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: yarn
|
2023-02-16 01:24:05 +00:00
|
|
|
node-version-file: '.nvmrc'
|
2023-01-29 22:44:03 +00:00
|
|
|
|
|
|
|
- name: Install all yarn packages
|
|
|
|
run: yarn --frozen-lockfile
|
|
|
|
|
|
|
|
- name: ESLint
|
|
|
|
run: yarn test:lint:js
|