mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-03 20:31:23 -05:00
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@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
|
|
- 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 }}
|