Skip to content

chore: default pkg manager to bun #332

chore: default pkg manager to bun

chore: default pkg manager to bun #332

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install modules
run: bun install
- name: Check linting
run: bun run lint
- name: Build typescript & flow
run: bun run build