Skip to content

chore: update Bun version to 1.2.13 (#17) #36

chore: update Bun version to 1.2.13 (#17)

chore: update Bun version to 1.2.13 (#17) #36

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
biome:
runs-on: ubuntu-24.04
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Setup toolchain
uses: jdx/mise-action@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check using Biome
run: bun run ci
tsc:
runs-on: ubuntu-24.04
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Setup toolchain
uses: jdx/mise-action@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check using tsc
run: bun run tsc
test:
runs-on: ubuntu-24.04
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Setup toolchain
uses: jdx/mise-action@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Test
run: bun run test
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
- name: Setup toolchain
uses: jdx/mise-action@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build