diff --git a/.github/workflows/cache-verify.yml b/.github/workflows/cache-verify.yml index f4c488190..a6454bb7b 100644 --- a/.github/workflows/cache-verify.yml +++ b/.github/workflows/cache-verify.yml @@ -208,9 +208,14 @@ jobs: echo "Waiting... ($i/30)" sleep 2 done - # build backend + # build backend & webapp - name: Build backend run: cd backend && yarn build + - name: Build webapp + run: | + cd webapp + yarn build + cd .. # Cypress tests - name: Full stack tests | run tests