Skip to content

feat: adding README documentation #20

feat: adding README documentation

feat: adding README documentation #20

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Run Unit Tests
run: npm test