Skip to content

Commit

Permalink
workflow fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pluckyswan committed Dec 24, 2024
1 parent 77d9c71 commit b67cd88
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 20 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/automated-staging-test-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,9 @@ on:
workflow_dispatch:

jobs:
test_files:
runs-on: ubuntu-latest

steps:
- name: Call staging-test-run.yml
uses: ./.github/workflows/staging-test-run_reusable.yml
with:
FILE_PATH: '../examples/Test/Automated/'
NAME: 'Automated'
TEST_TYPE: 'automatedTest'
call-staging-test-run:
uses: ./.github/workflows/staging-test-run_reusable.yml
with:
FILE_PATH: '../examples/Test/Automated/'
NAME: 'Automated'
TEST_TYPE: 'automatedTest'
16 changes: 6 additions & 10 deletions .github/workflows/golden-copy-staging-test-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,9 @@ on:
workflow_dispatch:

jobs:
test_files:
runs-on: ubuntu-latest

steps:
- name: Call staging-test-run.yml
uses: ./.github/workflows/staging-test-run_reusable.yml
with:
FILE_PATH: '../examples/Test/Automated/GoldenCopy/Expected/'
NAME: 'Golden Copy'
TEST_TYPE: 'goldenCopyTest'
call-staging-test-run:
uses: ./.github/workflows/staging-test-run_reusable.yml
with:
FILE_PATH: '../examples/Test/Automated/GoldenCopy/Expected/'
NAME: 'Golden Copy'
TEST_TYPE: 'goldenCopyTest'
3 changes: 3 additions & 0 deletions .github/workflows/staging-test-run_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@ on:
type: string
description: The e2e test to run
required: true
default: 'automatedTest'
NAME:
type: string
description: The name of test
required: true
default: 'Automated'
FILE_PATH:
type: string
description: The path to local files
required: true
default: '../examples/Test/Automated/'

jobs:
test_files:
Expand Down

0 comments on commit b67cd88

Please sign in to comment.