Skip to content

added testing lib

added testing lib #5

Workflow file for this run

name: npm test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "22"
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint
- name: Run prettier
run: npm run prettier
- name: Build
run: npm run build