Skip to content

fix: add harperdb as devDependency to fix CI test failures #6

fix: add harperdb as devDependency to fix CI test failures

fix: add harperdb as devDependency to fix CI test failures #6

Workflow file for this run

name: CI
on:
push:
branches: ['**']
pull_request:
branches: [main]
jobs:
test:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- run: npm ci
- name: Format check
run: npm run format:check
- name: Lint
run: npm run lint:check
- name: Test
run: npm test