Skip to content

fix: module export entry (#61) #181

fix: module export entry (#61)

fix: module export entry (#61) #181

Workflow file for this run

name: Unit Test
on: [push]
jobs:
test:
name: Build and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['16.x']
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install deps and build (with cache)
uses: pnpm/action-setup@v2
with:
version: 8.5.1
- run: pnpm i
- run: pnpm build
- run: rm -rf .next
- name: Test
run: pnpm test:ci