Files
beer-inventory/.gitea/workflows/test-build.yaml
T
kennyboy55 062bdbd16e
Build dev docker image / build (push) Successful in 25s
Add support for Brands: introduce prisma migrate
2026-08-07 11:01:27 +02:00

37 lines
673 B
YAML

name: Build dev docker image
on:
push:
branches:
- main
- feature/*
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout repository for build
- name: Checkout beer-inventory repository
uses: actions/checkout@v4
with:
ref: ${{ gitea.ref }}
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
# Install NPM packages
- name: Install NPM packages
run: npm ci
# Build project
- name: Build project
run: |
npx zenstack generate
npx remix vite:build