Skip to content

test: add github action #2

test: add github action

test: add github action #2

Workflow file for this run

name: CI
on: ['push', 'pull_request']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test