summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-08-11 16:31:02 -0700
committerGravatar GitHub <noreply@github.com> 2021-08-11 16:31:02 -0700
commit7c2feb19f68c96caf99bfccd89c64a6ae8d53a1c (patch)
treea87eeac0759bcdeb9f4d69dba8751c556ffd1965
parent2b41db15317618bac048d49a219ee8b133e6f7d1 (diff)
downloadastro-7c2feb19f68c96caf99bfccd89c64a6ae8d53a1c.tar.gz
astro-7c2feb19f68c96caf99bfccd89c64a6ae8d53a1c.tar.zst
astro-7c2feb19f68c96caf99bfccd89c64a6ae8d53a1c.zip
add docs and www smoke tests to github (#1088)
-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'