diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94cfaea37c..e0e0ff42fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,12 +52,20 @@ jobs: - name: Install dependencies run: yarn install --frozen-lockfile --ignore-engines - - name: Build + - name: Build Astro run: yarn build:all - name: Test run: yarn test + - name: "Smoke Test: Build "docs"" + run: yarn build + working-directory: ./docs + + - name: "Smoke Test: Build "www"" + run: yarn build + working-directory: ./www + lint: runs-on: ubuntu-latest name: 'Lint: node-14, ubuntu-latest'