Skip to content

add basic test and gh action #1

add basic test and gh action

add basic test and gh action #1

Workflow file for this run

name: Build
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm run test:ci