Skip to content

Updated Updating guide #29

Updated Updating guide

Updated Updating guide #29

Workflow file for this run

name: Pull Request check
on:
pull_request:
branches:
- main
types: [opened, synchronize, reopened]
jobs:
build-check:
name: Verify Project Builds
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build project
run: bun run build