Skip to content

Commit 8290ca9

Browse files
committed
Install image magick
1 parent 9b7bb25 commit 8290ca9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/html_proofer.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v3
10+
- name: Install Image Magick
11+
run: sudo apt-get install imagemagick
1012
- uses: ruby/setup-ruby@v1
1113
with:
1214
bundler-cache: true

.github/workflows/jekyll.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ jobs:
2323
steps:
2424
- name: Checkout
2525
uses: actions/checkout@v3
26-
- run: npm install
26+
- name: NPM install
27+
run: npm install
28+
- name: Install Image Magick
29+
run: sudo apt-get install imagemagick
2730
- name: Setup Ruby
2831
uses: ruby/setup-ruby@v1
2932
with:

0 commit comments

Comments
 (0)