Skip to content

chore: update build target, dependencies and workflow actions #22

chore: update build target, dependencies and workflow actions

chore: update build target, dependencies and workflow actions #22

Workflow file for this run

name: verify
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v5
- name: 🏗 Setup Bun
uses: oven-sh/setup-bun@v2
- name: 📦 Install dependencies
run: bun install
- name: ✅ Lint project
run: bun lint