Skip to content

fix up and move down stack #176

fix up and move down stack

fix up and move down stack #176

Workflow file for this run

name: Lint
on: [push]
jobs:
lint:
name: Lint the codebase
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node 20.x to install with private scope
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Prettier
run: npm run format