Skip to content

Commit

Permalink
Fix: ubuntu-latestでImageMagickがなくてテストが失敗するのを修正
Browse files Browse the repository at this point in the history
ランナーOSがUbuntu 24.04になりImageMagickがデフォルトで入らなくなった。
手動でインストールするようにした。

actions/runner-images#9848 (comment)
  • Loading branch information
yonta committed Dec 18, 2024
1 parent e696934 commit c0ec159
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install ImageMagick
run: |
sudo apt-get update
sudo apt-get install --yes imagemagick
- uses: actions/setup-node@v4
with:
node-version: "18"
Expand Down

0 comments on commit c0ec159

Please sign in to comment.