Skip to content

Commit 799ac37

Browse files
authored
Merge pull request #3273 from thc202/node24
Update to Node.js 24
2 parents ab22bac + 6fa7941 commit 799ac37

File tree

15 files changed

+518
-1990
lines changed

15 files changed

+518
-1990
lines changed

.github/workflows/check-dist-update-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set Node.js
2525
uses: actions/setup-node@v5
2626
with:
27-
node-version: 20.x
27+
node-version: 24
2828

2929
- name: Install dependencies
3030
run: npm ci

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install node.js
1515
uses: actions/setup-node@v5
1616
with:
17-
node-version: '20'
17+
node-version: '24'
1818

1919
- name: Install npm dependencies
2020
run: npm install

.github/workflows/update-website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup node
1414
uses: actions/setup-node@v5
1515
with:
16-
node-version: '20'
16+
node-version: '24'
1717
- name: Checkout
1818
uses: actions/checkout@v5
1919
with:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
24

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18
1+
FROM node:24
22

33
COPY package-lock.json package.json /app/
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ use the `site/static` folder. Images, font-files, etc, all go there. Files in th
205205
will end up being available as `/favicon.ico` and so on...
206206

207207
##### CSS/SCSS
208-
All the CSS is written in SCSS ("Sassy CSS") with all the files in `src/css/` with `src/css/main.css` being the entrypoint, defining main variables & importing the needed styles.
208+
All the CSS is written in SCSS ("Sassy CSS") with all the files in `src/css/` with `src/css/main.scss` being the entrypoint, defining main variables & importing the needed styles.
209209

210210
Styles are separated by broad category, component and post specific styles. For example, if you need to change the typography across the entire site, `src/css/_type.scss` is the file to edit.
211211

0 commit comments

Comments
 (0)