Skip to content

Nickname documentation #870

Nickname documentation

Nickname documentation #870

Workflow file for this run

name: main
on:
push:
pull_request:
jobs:
# Perform a variety of checks
lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install NodeJS
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint:check