Skip to content

Update dependency @vercel/og to v0.5.20 #1230

Update dependency @vercel/og to v0.5.20

Update dependency @vercel/og to v0.5.20 #1230

Workflow file for this run

name: Check Prettier
# This action works with pull requests and pushes on the main branch
on:
pull_request:
jobs:
prettier:
name: Prettier Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Run Prettier
id: prettier-run
uses: rutajdash/[email protected]
with:
config_path: ./prettier.config.js
# This step only runs if prettier finds errors causing the previous step to fail
# This steps lists the files where errors were found
- name: Prettier Output
if: ${{ failure() }}
shell: bash
run: |
echo "The following files are not formatted:"
echo "${{steps.prettier-run.outputs.prettier_output}}"