Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ env:
CI: development
SITE_DIR: public
HUGO_VERSION: 0.151.0
DART_SASS_VERSION: 1.99.0

jobs:
lint:
Expand Down Expand Up @@ -77,13 +78,16 @@ jobs:
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
hugo version
- name: Install Dart Sass
run: sudo snap install dart-sass

- uses: actions/setup-node@v6
with:
node-version: lts/*

- name: Install Dart Sass
run: |
npm install -g sass@${DART_SASS_VERSION}
Comment thread
KittyChiu marked this conversation as resolved.
sass --version

- name: Install test dependencies
run: |
# Clean install of the node modules
Expand Down
Loading