Something went wrong. Try again.
CLI for FastMail via JMAP
Something went wrong. Try again.
594 B · 34 lines
YAML
at main
1234567891011121314151617181920212223242526272829303132333435name: CI
on: push: branches: [main] pull_request: branches: [main]
concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true
jobs: ci: name: Lint & Type 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: Type Check run: bun run typecheck