Skip to content

Commit

Permalink
Add github actions for docs verifying
Browse files Browse the repository at this point in the history
  • Loading branch information
feiskyer committed Jun 22, 2021
1 parent b869152 commit 627268b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test-docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test Docs

on:
pull_request: {}
push: {}

jobs:
deploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "0.84.0"
extended: true

- name: Build Docs
run: |
cd site
npm install postcss-cli
npm install autoprefixer
npm audit fix
hugo --minify

0 comments on commit 627268b

Please sign in to comment.