Skip to content
This repository has been archived by the owner on Jun 25, 2023. It is now read-only.

Update README.md

Update README.md #196

Workflow file for this run

name: 🧪 Testing
on: [push, pull_request, workflow_dispatch]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 16.6.1
- name: Install Dependencies
run: npm i
- name: Build
run: npm run build
- name: Tests
run: npm run test