Skip to content

fix linting

fix linting #1

Workflow file for this run

name: Build, lint, and test
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build TypeScript
run: npm run build
- name: Run ESLint
run: npm run lint
# - name: Run tests
# run: npm test