Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/lint-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
cache: 'npm'
cache-dependency-path: '**/package-lock.json'

# [24/AUG/23] Adjusted from npm ci to prevent EBADPLATFORM error due to fsevents
# Adjusted from npm ci to prevent EBADPLATFORM error due to fsevents
- name: Install npm
run: npm i

Expand All @@ -44,8 +44,8 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [22.x, 24.x]
# Testing current LTS (24.x) and current Stable (26.x). Node 22 hit End-of-Life in April 2026.
node-version: [24.x, 26.x]
include:
- os: ubuntu-latest
hugo_cachedir: '/tmp/hugo_cache_runner'
Expand Down Expand Up @@ -98,8 +98,8 @@ jobs:
fi
shell: bash

# [24/AUG/23] Adjusted from npm ci for non-macOS to prevent EBADPLATFORM error due to fsevents
- name: Perform clean install of npm
# Adjusted to npm i for all OS to prevent EUSAGE/EBADPLATFORM errors on modern runners
- name: Install npm dependencies
run: npm i

# On Windows, HUGO_CACHEDIR is initialised from the matrix as '~\AppData\Local\hugo_cache'.
Expand All @@ -124,4 +124,4 @@ jobs:
run: npm run env

- name: Build main site
run: npm run build:cache
run: npm run build:cache
Loading