Skip to content

fix(ci): docker-image remove cache and arm64 #5

fix(ci): docker-image remove cache and arm64

fix(ci): docker-image remove cache and arm64 #5

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: Build Frontend
on:
push:
branches: [ "main" ]
paths: [ "frontend/**" ]
pull_request:
branches: [ "main" ]
paths: [ "frontend/**" ]
defaults:
run:
working-directory: ./frontend
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Build
run: bun run build