Skip to content

test(lint): update lint workflow #391

test(lint): update lint workflow

test(lint): update lint workflow #391

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Node v20
uses: actions/setup-node@v1
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm lint