Skip to content

this aught to fix my actions #82

this aught to fix my actions

this aught to fix my actions #82

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Cache
uses: actions/cache@v3
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/bun.lockb') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install bun
uses: oven-sh/setup-bun@v2
- name: Install Dependencies
run: bun i
- name: Check for errors
run: bun check
- name: Build
run: bun build