Skip to content

Add MIT License file with 2025 copyright and abraham as holder #17

Add MIT License file with 2025 copyright and abraham as holder

Add MIT License file with 2025 copyright and abraham as holder #17

Workflow file for this run

name: Main
on:
push:
branches: ['**']
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build project
run: npm run build
- name: Run tests
run: npm test