Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ on:
required: false

jobs:
run-unit-test:
runs-on: ubuntu-latest
steps:
- name: '[Prep 1] Setup Node'
uses: actions/setup-node@v2
with:
node-version: 18
- name: '[Prep 2] Checkout'
uses: actions/checkout@v3
- name: '[prep 3] Unit Test'
run: |
npm install && npm run test

build-ubuntu:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ Run `npm run start` to run the application locally

Run `npm run make` to package and make platform-specific distributable

Run `npm run test` to run unit test using mocha and chai
Loading