Skip to content

Update documentation. #2

Update documentation.

Update documentation. #2

Workflow file for this run

name: lint
on:
push:
pull_request:
branches: [main, master]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "npm"
- run: npm ci
- run: npm run lint
- run: npm run format