Skip to content

docs: add migration #73

docs: add migration

docs: add migration #73

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Install dependencies
run: npx pnpm install --no-frozen-lockfile
- name: Lint
run: npm run lint
- name: Test
run: npm run test