Skip to content

Commit c5df1aa

Browse files
committed
fix: startup failure
1 parent 0a43c8f commit c5df1aa

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/develop-verify-merge.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ jobs:
3939
prefix_case_sensitive: true
4040

4141
- name: "Verify BATS Tests Pass"
42-
run: lib/bats-core/bin/bats "$FILES"
43-
with:
44-
FILES: ./qa/**/*.bats
42+
run: 'lib/bats-core/bin/bats "$FILES"'
43+
env:
44+
FILES: './qa/**/*.bats'

.github/workflows/main-verify-merge.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
allowed_prefixes: release,patch
3030

3131
- name: "Verify BATS Tests Pass"
32-
run: lib/bats-core/bin/bats "$FILES"
33-
with:
34-
FILES: ./qa/**/*.bats
32+
run: 'lib/bats-core/bin/bats "$FILES"'
33+
env:
34+
FILES: './qa/**/*.bats'

0 commit comments

Comments
 (0)