Skip to content

Commit 8f3d4e9

Browse files
committed
install system deps and bump nodejs
1 parent 75d6fb4 commit 8f3d4e9

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,17 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
env:
12-
# speeds up installation of htmlproofer
1312
NOKOGIRI_USE_SYSTEM_LIBRARIES: true
1413

1514
steps:
1615
- name: Clone repository
1716
uses: actions/checkout@v4
1817

18+
- name: Install system dependencies
19+
run: |
20+
sudo apt-get update
21+
sudo apt-get install -y libxml2-dev libxslt-dev
22+
1923
- name: Set up Ruby
2024
uses: ruby/setup-ruby@v1
2125
with:
@@ -25,10 +29,10 @@ jobs:
2529
- name: Set up Node JS
2630
uses: actions/setup-node@v4
2731
with:
28-
node-version: 20
32+
node-version: 22
2933

3034
- name: Install Global npm packages
31-
run: npm install --global sass-lint markdownlint-cli
35+
run: npm install --global markdownlint-cli
3236

3337
- name: Build Jekyll site
3438
run: JEKYLL_ENV=production bundle exec jekyll build

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
ruby 3.1.2
2-
nodejs 20.11.1
2+
nodejs 22.12.0

0 commit comments

Comments
 (0)