Skip to content

docs: updated readme #24

docs: updated readme

docs: updated readme #24

Workflow file for this run

name: Test Main
on:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Obtaining the code
uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Run unit tests (with coverage)
run: npm run test