Skip to content

Merge to main to test domain #6

Merge to main to test domain

Merge to main to test domain #6

Workflow file for this run

name: Verify
on:
pull_request:
branches: [main]
# Cancel in-progress workflows for the same PR
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
# Optionally add linting/testing steps if needed
- name: Lint
run: bun run lint