Skip to content

πŸš€ chore: update CI workflow to simplify dependency installation and e… #4360

πŸš€ chore: update CI workflow to simplify dependency installation and e…

πŸš€ chore: update CI workflow to simplify dependency installation and e… #4360

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
- name: Lint πŸ”
run: bun run lint
- name: Check πŸ§ͺ
run: bun run check
- name: Build πŸ”§
uses: withastro/action@v5