Skip to content

chore: format

chore: format #50

Workflow file for this run

name: Backend CI
on: push
jobs:
turbo-build:
name: Build 🏗️
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: |
pnpm install
pnpm install bun -g
- run: pnpm build