mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 10:19:51 -06:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
30 lines
771 B
YAML
30 lines
771 B
YAML
name: Build Web
|
|
on:
|
|
workflow_call:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Formbricks-web
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
|
|
steps:
|
|
- name: Harden the runner (Audit all outbound calls)
|
|
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- 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"
|
|
turbo_token: ${{ secrets.TURBO_TOKEN }}
|
|
turbo_team: ${{ vars.TURBO_TEAM }}
|