Skip to content

chore(deps-dev): bump the bun group across 17 directories with 2 updates #190

chore(deps-dev): bump the bun group across 17 directories with 2 updates

chore(deps-dev): bump the bun group across 17 directories with 2 updates #190

name: Blueprint Checks
on:
push:
branches:
- master
paths:
- ".github/workflows/blueprint-checks.yml"
- "edge-apps/blueprint/**"
pull_request:
branches:
- master
paths:
- ".github/workflows/blueprint-checks.yml"
- "edge-apps/blueprint/**"
jobs:
blueprint-checks:
name: Blueprint Linting and Formatting
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.2
- name: Install dependencies
working-directory: edge-apps/blueprint
run: bun install
- name: Run linting
working-directory: edge-apps/blueprint
run: bun run lint
- name: Run formatting check
working-directory: edge-apps/blueprint
run: bun run format:check