Skip to content

Cosmetic Fixes

Cosmetic Fixes #20

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
run_install: true
- name: Lint
run: pnpm lint
- name: Format
run: pnpm format
- name: Type Check
run: pnpm type-check
- name: Build
run: pnpm build