Skip to content

Use Bun in client github action #10

Use Bun in client github action

Use Bun in client github action #10

Workflow file for this run

name: 'build client'
on: # rebuild any PRs and any branch changes for the client directory
pull_request:
push:
paths:
- client-pure/**
- .github/workflows/build-client.yaml
jobs:
build-client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install --frozen-lockfile
working-directory: client-pure
- name: Build client with Vite
run: bun run build
working-directory: client-pure