summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 94cfaea37..e0e0ff42f 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'