Skip to content

Commit 87c1de0

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

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 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"
42+
run: 'lib/bats-core/bin/bats "$FILES"'
4343
with:
44-
FILES: ./qa/**/*.bats
44+
FILES: './qa/**/*.bats'

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

Lines changed: 2 additions & 2 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"
32+
run: 'lib/bats-core/bin/bats "$FILES"'
3333
with:
34-
FILES: ./qa/**/*.bats
34+
FILES: './qa/**/*.bats'

0 commit comments

Comments
 (0)