Skip to content

Add format & lint & dependabot pipelines #11

Add format & lint & dependabot pipelines

Add format & lint & dependabot pipelines #11

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
permissions:
contents: read
jobs:
build:
name: Jest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Build packages
run: bun run build
- name: Run tests
run: bun run test