1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 09:24:48 +00:00
zumbiepig 3c2e448aba
Update build.yml
Signed-off-by: zumbiepig <121742281+zumbiepig@users.noreply.github.com>
2024-09-15 17:02:43 -07:00

21 lines
464 B
YAML

name: Build
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Check formatting
run: bun run format:check
- name: Lint
run: bun run lint
- name: Build
run: bun run build