Consider adding a smoke test along the lines of what was proposed in https://github.com/google/docsy/issues/1075#issuecomment-1172432277: ```console $ hugo new site myproject ... $ cd myproject $ git init # required for the git submodule command to work ... $ git submodule add --depth 1 https://github.com/google/docsy.git themes/docsy ... $ echo 'theme = "docsy"' >> hugo.toml $ (cd themes/docsy && npm install) ... $ npm init -y $ npm install -D autoprefixer postcss-cli postcss ... $ hugo -v Start building sites … ``` Related: - #726