Skip to content

fix: add debug log #339

fix: add debug log

fix: add debug log #339

Workflow file for this run

name: Test
on:
push:
branches-ignore:
- gh-pages
- releases/**
pull_request:
branches-ignore:
- gh-pages
- releases/**
types:
- opened
- synchronize
- reopened
env:
CI: true
jobs:
test:
name: "Test on Node.js ${{ matrix.node }} OS: ${{matrix.os}}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install
run: yarn install
- name: Test
run: yarn test