Skip to content

add github actions

add github actions #3

Workflow file for this run

name: CI
on: [push]
jobs:
test:
name: Smoke test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "lts/*"
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run build
- run: npm run test