Skip to content

Fix issue 61 (#62)

Fix issue 61 (#62) #22

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@v3
- uses: actions/setup-node@v3
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@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "npm"
cache-dependency-path: "package-lock.json"
- run: npm ci
- run: npm run build
- run: npm run test