Skip to content

πŸš€ chore: update GitHub Actions workflow for improved deployment process #4358

πŸš€ chore: update GitHub Actions workflow for improved deployment process

πŸš€ chore: update GitHub Actions workflow for improved deployment process #4358

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
check:
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 --frozen-lockfile
- name: Lint πŸ”
run: bun run lint
- name: Build πŸ”§
run: bun run build