From ca6cef2aaafe24f8db1408de6f6a5c9e424266fd Mon Sep 17 00:00:00 2001 From: Brad Simpson Date: Mon, 22 Dec 2025 15:44:43 -0700 Subject: [PATCH 1/2] Added submodules: recursive to the checkout step in the workflow --- .github/workflows/build-and-deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index e6d76ae1b..97c2a0b13 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -12,6 +12,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + submodules: recursive - name: Setup Node.js uses: actions/setup-node@v4 From 24b5d23fcd01cbb3365533184e4838d0206d8171 Mon Sep 17 00:00:00 2001 From: Brad Simpson Date: Tue, 23 Dec 2025 08:58:58 -0700 Subject: [PATCH 2/2] Change strategy to use adapt install --- .github/workflows/build-and-deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 97c2a0b13..025bf457d 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -12,8 +12,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - with: - submodules: recursive - name: Setup Node.js uses: actions/setup-node@v4 @@ -21,7 +19,9 @@ jobs: node-version: "lts/*" - name: Install dependencies - run: npm ci + run: | + npm ci + npx -y -p adapt-cli adapt install - name: Build course run: grunt build