Skip to content

Commit

Permalink
Add ability to set base URL for install instructions testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mheap committed Jan 22, 2024
1 parent 5efa1dc commit 3c6dea5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/install-instructions-test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: Install Instructions
on: workflow_dispatch
on:
workflow_dispatch:
inputs:
base_url:
type: string
description: URL to test against. Defaults to http://localhost:8888

jobs:
install-instructions:
Expand Down Expand Up @@ -28,6 +33,7 @@ jobs:
CONTINUE_ON_ERROR: 1
IGNORE_SKIPS: 1
EXPECTED_FAILURES_EXIT_CODE: 0
BASE_URL: ${{ github.event.inputs.base_url || env.BASE_URL }}
run: |
cd tools/install-tester
npm ci
Expand Down

0 comments on commit 3c6dea5

Please sign in to comment.