Skip to content

ci(workflow): add workflow for unit test #1

ci(workflow): add workflow for unit test

ci(workflow): add workflow for unit test #1

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm test