Skip to content

Added the Documentation and formal stuff to get the github community standarts #33

Added the Documentation and formal stuff to get the github community standarts

Added the Documentation and formal stuff to get the github community standarts #33

Workflow file for this run

name: Run Unit Tests
on:
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 14
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm test