From 249c4a3e838db0c1c59d1c0e658cd3290c960429 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Tue, 17 Nov 2020 09:16:03 +0000 Subject: [PATCH] Enabled cloning of submodules in migrations test - we start Ghost in this test but Ghost will check Casper, which isn't cloned without this commit --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 214a289554..d70050b09f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,6 +43,9 @@ jobs: name: Migrations - ${{ matrix.DB }} steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 + submodules: true - uses: actions/setup-node@v1 with: node-version: '12.10.0'