Skip to content

chore(utils): define scope of isNotFunction method #48

chore(utils): define scope of isNotFunction method

chore(utils): define scope of isNotFunction method #48

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
unit_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Testing on Node.js
uses: actions/setup-node@v4
with:
node-version: latest
cache: 'npm'
- name: Version Check
run: node -v && npm -v
- name: Install Dependencies
run: npm ci
- name: Running Test
run: npm test