Skip to content

Added badges to readme #5

Added badges to readme

Added badges to readme #5

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main ]
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test