0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Puppeteerで日本語文字化け【2025年度版GitHub Actions】

Last updated at Posted at 2025-05-22

sudo apt-get install -y fonts-noto-cjkを実行しよう。WebサイトがWebフォントを読み込んでいる場合はインストール不要です。

workflow.yml
name: Screenshot

on:
  push:

jobs:
  screenshot:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: browser-actions/setup-chrome@v1
      - run: |
          sudo apt-get install -y fonts-noto-cjk
          chrome --headless --disable-gpu --no-sandbox --screenshot=screenshot.png https://www.yahoo.co.jp/

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?