Skip to content

Migration

Migration #30

Workflow file for this run

name: Check Pull Request
on:
pull_request:
branches:
- main
jobs:
check:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun i
- run: |
bun test
bun build
# eslint project can not lint before build
bun lint