Skip to content

chore: Project scaffolding #5

chore: Project scaffolding

chore: Project scaffolding #5

Workflow file for this run

name: Lint
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Install deps
run: npm i
- name: Lint
run: npm run lint