Browse Source

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.
tags/v4.2.0
Phillip Johnsen 5 years ago
parent
commit
b9e113f450
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      .github/workflows/verify.yml

+ 4
- 2
.github/workflows/verify.yml View File

@@ -12,7 +12,8 @@ jobs:

steps:
- uses: actions/checkout@v2
submodules: recursive
with:
submodules: recursive
- name: Setup Node.js
uses: actions/setup-node@v1
with:
@@ -31,7 +32,8 @@ jobs:

steps:
- uses: actions/checkout@v2
submodules: recursive
with:
submodules: recursive
- name: Setup Node.js
uses: actions/setup-node@v1
with:


Loading…
Cancel
Save