Skip to content

Add tests, linting, and more #6

Add tests, linting, and more

Add tests, linting, and more #6

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 21
- name: Install Depedencies
run: npm ci
- name: Run Linter
run: npm run lint
- name: Run Formatter
run: npm run format:check
- name: Run Tests
run: npm run test:coverage