Skip to content

test: add linting integration tests #33

test: add linting integration tests

test: add linting integration tests #33

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