Skip to content

Display inverted logo in dark mode #284

Display inverted logo in dark mode

Display inverted logo in dark mode #284

Workflow file for this run

name: Format
on:
push:
paths:
- "**.md"
- "**.json"
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install
run: yarn install
env:
CI: true
- name: Run formatting tool
run: yarn style:fix
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "✨ Apply formatting changes"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}