Skip to content

Refactoring and Docs #1

Refactoring and Docs

Refactoring and Docs #1

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- '*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npx eslint .