Skip to content

Commit 2c0d281

Browse files
committed
Fix white page issue by reverting to Node 12.x
The site was showing a blank page because Hexo 3.9.0 is incompatible with Node 20.x. Reverting to Node 12.x which is compatible with the current Hexo version.
1 parent 88765bf commit 2c0d281

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Use Node.js 20.x
16+
- name: Use Node.js 12.x
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: '20.x'
19+
node-version: '12.x'
2020
- name: Cache NPM dependencies
2121
uses: actions/cache@v4
2222
with:

0 commit comments

Comments
 (0)