Skip to content

fix: "types" in package.json exports (#36) #64

fix: "types" in package.json exports (#36)

fix: "types" in package.json exports (#36) #64

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["14", "16", "18", "20"]
name: Test on Node.js ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Check style
run: yarn format --check