Skip to content

CI

CI #3

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
workflow_call:
workflow_dispatch:
jobs:
lint:
name: Lint files
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- run: npm install
- run: npm run lint