Skip to content

Commit b9e113f

Browse files
committed
Fix GitHub checkout action configuration to pull submodules
..blooper introduced in the latest commit where submodules were to be pulled to make sure mustache spec tests were included in test runs.
1 parent 1ff17aa commit b9e113f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/verify.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v2
15-
submodules: recursive
15+
with:
16+
submodules: recursive
1617
- name: Setup Node.js
1718
uses: actions/setup-node@v1
1819
with:
@@ -31,7 +32,8 @@ jobs:
3132

3233
steps:
3334
- uses: actions/checkout@v2
34-
submodules: recursive
35+
with:
36+
submodules: recursive
3537
- name: Setup Node.js
3638
uses: actions/setup-node@v1
3739
with:

0 commit comments

Comments
 (0)