Skip to content

Commit

Permalink
Add test hugo build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaitanya-Shahare committed Nov 20, 2024
1 parent 8c1879b commit 629b40c
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test-hugo-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Test Hugo Build

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
env:
HUGO_VERSION: 0.128.0
steps:
- name: Install Hugo CLI
run: |
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
- name: Install Dart Sass
run: sudo snap install dart-sass

- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- name: Install Node.js dependencies
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"

- name: Build with Hugo
run: hugo --minify

0 comments on commit 629b40c

Please sign in to comment.