Skip to content

Migration

Migration #28

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
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'bun'
registry-url: 'https://registry.npmjs.org'
- run: bun i
- run: |
bun lint
bun test
bun build