mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-04 04:40:37 -06:00
19 lines
399 B
YAML
19 lines
399 B
YAML
name: Build web
|
|
on:
|
|
workflow_call:
|
|
jobs:
|
|
build:
|
|
name: Build Formbricks-web
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: ./.github/actions/dangerous-git-checkout
|
|
|
|
- name: Build & Cache Web Binaries
|
|
uses: ./.github/actions/cache-build-web
|
|
id: cache-build-web
|
|
with:
|
|
e2e_testing_mode: "0"
|