Skip to content

build: add github action for testing (#292) #2

build: add github action for testing (#292)

build: add github action for testing (#292) #2

Workflow file for this run

name: Check
on: push
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Run test
run: npm test