2023-03-20 21:50:35 +09:00
|
|
|
name: Linting
|
|
|
|
|
|
|
|
# Run on PRs only
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, reopened]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: '18'
|
|
|
|
|
|
|
|
- name: Lint
|
2023-03-21 17:03:03 +09:00
|
|
|
run: npm ci && npx eslint .
|