diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 488e054ba..dfb96405a 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -14,7 +14,9 @@ jobs: e2e: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.sha }} - name: Use Node.js uses: actions/setup-node@v3 with: diff --git a/src/lib/wizards/functions/steps/configuration.svelte b/src/lib/wizards/functions/steps/configuration.svelte index b951796e7..d8afed74b 100644 --- a/src/lib/wizards/functions/steps/configuration.svelte +++ b/src/lib/wizards/functions/steps/configuration.svelte @@ -22,7 +22,8 @@ label="Entrypoint" id="entrypoint" placeholder="Entrypoint" - bind:value={$createFunction.entrypoint} /> + bind:value={$createFunction.entrypoint} + required /> Build commands diff --git a/src/routes/console/project-[project]/functions/function-[function]/createManual.svelte b/src/routes/console/project-[project]/functions/function-[function]/createManual.svelte index dc747b543..91507d198 100644 --- a/src/routes/console/project-[project]/functions/function-[function]/createManual.svelte +++ b/src/routes/console/project-[project]/functions/function-[function]/createManual.svelte @@ -75,7 +75,8 @@ label="Entrypoint" id="entrypoint" placeholder="Entrypoint" - bind:value={entrypoint} /> + bind:value={entrypoint} + required /> {#if $func.version !== 'v3'} diff --git a/src/routes/console/project-[project]/functions/function-[function]/deploymentSource.svelte b/src/routes/console/project-[project]/functions/function-[function]/deploymentSource.svelte index d4a9bf35c..0c5b765de 100644 --- a/src/routes/console/project-[project]/functions/function-[function]/deploymentSource.svelte +++ b/src/routes/console/project-[project]/functions/function-[function]/deploymentSource.svelte @@ -33,4 +33,6 @@ {:else if deployment.type === 'manual'}