File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
11
11
env :
12
- # speeds up installation of htmlproofer
13
12
NOKOGIRI_USE_SYSTEM_LIBRARIES : true
14
13
15
14
steps :
16
15
- name : Clone repository
17
16
uses : actions/checkout@v4
18
17
18
+ - name : Install system dependencies
19
+ run : |
20
+ sudo apt-get update
21
+ sudo apt-get install -y libxml2-dev libxslt-dev
22
+
19
23
- name : Set up Ruby
20
24
uses : ruby/setup-ruby@v1
21
25
with :
@@ -25,10 +29,10 @@ jobs:
25
29
- name : Set up Node JS
26
30
uses : actions/setup-node@v4
27
31
with :
28
- node-version : 20
32
+ node-version : 22
29
33
30
34
- name : Install Global npm packages
31
- run : npm install --global sass-lint markdownlint-cli
35
+ run : npm install --global markdownlint-cli
32
36
33
37
- name : Build Jekyll site
34
38
run : JEKYLL_ENV=production bundle exec jekyll build
Original file line number Diff line number Diff line change 1
1
ruby 3.1.2
2
- nodejs 20.11.1
2
+ nodejs 22.12.0
You can’t perform that action at this time.
0 commit comments