Skip to content

Commit

Permalink
Merge pull request #2158 from DanielKuhn/fix-github-actions
Browse files Browse the repository at this point in the history
Install imagemagick in github workflows
  • Loading branch information
DanielKuhn authored Oct 9, 2024
2 parents cb9a10c + da679ba commit 2acbbb8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/reusable-workflow-rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ jobs:

# Dependencies

- name: Install imagemagick package for image processing
run: |
sudo apt-get update
sudo apt-get install imagemagick
- name: Install libvips package for image processing
run: |
sudo apt-get update
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ jobs:

# Dependencies

- name: Install imagemagick package for image processing
run: |
sudo apt-get update
sudo apt-get install imagemagick
- name: Install libvips package for image processing
run: |
sudo apt-get update
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@ jobs:

# Dependencies

- name: Install imagemagick package for image processing
run: |
sudo apt-get update
sudo apt-get install imagemagick
- name: Install libvips package for image processing
run: |
sudo apt-get update
Expand Down

0 comments on commit 2acbbb8

Please sign in to comment.