Skip to content

feat: tile generation #10

feat: tile generation

feat: tile generation #10

Workflow file for this run

name: Lint & Format
on:
pull_request:
branches: [ "main" ]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install Dependencies
run: bun install --frozen-lockfile
- name: Check Formatting
run: bun run format:check
- name: Run ESLint
run: bun run lint