Skip to content

Commit

Permalink
test: allow setting the debug var via workflow dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
MiniDigger authored Feb 17, 2024
1 parent fd1dc80 commit d6240bb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ name: e2e
on:
# allow manual dispatch
workflow_dispatch:
inputs:
debug:
type: boolean
required: false
default: false
# run on pushes to staging
push:
branches:
Expand Down Expand Up @@ -56,4 +61,5 @@ jobs:
env:
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
BROWSERSTACK_DEBUG: ${{ github.event.inputs.debug || false }}
run: (cd e2e && pnpm run browserstack-multiple)

0 comments on commit d6240bb

Please sign in to comment.