Skip to content

add changeset

add changeset #140

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 16, 18 ]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- uses: pnpm/[email protected]
- name: Install Dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test