Skip to content

Improve & update README docs #65

Improve & update README docs

Improve & update README docs #65

Workflow file for this run

name: Run ESLint
on:
push:
pull_request:
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest
steps:
- name: "☁️ checkout repository"
uses: actions/checkout@v4
- name: "🔧 setup node"
uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- name: "⬇️ install packages"
run: npm i --include=dev --no-fund --progress=false
- name: "🔍 lint code"
run: npm run lint