Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

v0.33.2

v0.33.2 #221

Workflow file for this run

name: Unit Test
on:
- pull_request
- push
jobs:
unit-test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Unit Test
run: yarn test:unit