Skip to content

rm fixme with arrows #42

rm fixme with arrows

rm fixme with arrows #42

Workflow file for this run

name: Run Checks and Tests
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
- name: Install dependencies
run: npm ci
- name: Run checks
run: npm run lint
- name: Run tests
run: npm test