Skip to content

feat: add debug option #36

feat: add debug option

feat: add debug option #36

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: Install dependencies
run: npm ci
- name: Install ncc
run: npm install -g @vercel/ncc
- name: Run test
run: npm run test
- name: Build the dist/index.js
run: npm run build