Skip to content

feat: make focus color more flexible #227

feat: make focus color more flexible

feat: make focus color more flexible #227

Workflow file for this run

name: autofix.ci
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
env:
NODE_VERSION: 24.10.0
jobs:
autofix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Setup PNPM
uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4.3.0
- name: Setup Node
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: "pnpm"
- name: Install Dependencies
run: pnpm i
- name: Run prettier
run: pnpm exec prettier . --write
# Optimize all PNGs with https://pngquant.org/
- run: sudo apt-get update && sudo apt-get install -y pngquant
- name: Run pngquant
run: |
shopt -s globstar
find . -name '*.png' -exec pngquant --ext .png 256 {} \;
- uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8