Skip to content

feat: convert to Bun and fix the Docker build #41

feat: convert to Bun and fix the Docker build

feat: convert to Bun and fix the Docker build #41

Workflow file for this run

name: Lint, Build or Tests
on:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Unit Tests
run: npm run test
- name: Build
run: npm run build:prod