Skip to content

ci: add GitHub Actions workflow to run unit tests #3

ci: add GitHub Actions workflow to run unit tests

ci: add GitHub Actions workflow to run unit tests #3

name: Run Unit Tests
on: [push]
jobs:
run-unit-tests:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: npm run test