From fdecd2bff8c09db2aa239bf936b11c48e7a4c07c Mon Sep 17 00:00:00 2001 From: Ian Boll Date: Mon, 12 Feb 2024 22:51:06 -0500 Subject: [PATCH] Recursively checkout submodules as part of CI --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c6bca1..2ccaee4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,8 @@ jobs: os: [macos-latest, ubuntu-latest] steps: - uses: actions/checkout@v4 + with: + submodules: true - uses: actions/setup-node@v4 with: node-version: 20 @@ -28,6 +30,8 @@ jobs: runs-on: windows-2019 steps: - uses: actions/checkout@v4 + with: + submodules: true - uses: actions/setup-node@v4 with: node-version: 20