Skip to content

feat: [docs, test]: Updates docs, test and refactored #31

feat: [docs, test]: Updates docs, test and refactored

feat: [docs, test]: Updates docs, test and refactored #31

Workflow file for this run

name: Lint and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: |
npm install --package-lock-only
npm ci
npm run build
- name: Run linting
run: npm run lint
- name: Run tests
run: npm run test