Hugh Kennedy 7ac2b5d447 Run tests on push using GitHub Actions
This adds a basic CI pipeline to the repository which runs tests on
all branch pushes.
2025-01-14 10:10:00 -08:00

17 lines
264 B
YAML

name: Push
on:
push:
branches: "*"
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm ci
- run: npm test