Skip to content

Set up development environment #6

Set up development environment

Set up development environment #6

Workflow file for this run

name: PR Workflow
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- staging
- main
jobs:
check:
timeout-minutes: 30
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- name: checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: setup bun
uses: oven-sh/setup-bun@v1
- name: install
run: bun install --frozen-lockfile
- name: typecheck
run: bun run typecheck
- name: lint
run: bun run lint