Skip to content

fix(lint workflow): forgot a word #392

fix(lint workflow): forgot a word

fix(lint workflow): forgot a word #392

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 run lint