Skip to content

chore: switch "KiCAD" strings (and variants) to "KiCad". (#166) #118

chore: switch "KiCAD" strings (and variants) to "KiCad". (#166)

chore: switch "KiCAD" strings (and variants) to "KiCad". (#166) #118

Workflow file for this run

name: Build, lint, & test
on:
push:
branches: main
pull_request:
branches: main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "npm"
cache-dependency-path: "package-lock.json"
- run: npm ci
- run: npm run lint:eslint
- run: npm run lint:prettier
- run: npm run lint:types
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "npm"
cache-dependency-path: "package-lock.json"
- run: npm ci
- run: npm run build
- run: npm run test