Skip to content

chore: add Watchers count to the GitHub link entry #13

chore: add Watchers count to the GitHub link entry

chore: add Watchers count to the GitHub link entry #13

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@v4
- name: 🏗 Setup Bun
uses: oven-sh/setup-bun@v2
- name: 📦 Install dependencies
run: bun install
- name: 🔨 Compile sources
run: bun tsc --noEmit
- name: ✅ Lint project
run: bun lint