Skip to content

docs: Fix home page images urls #12

docs: Fix home page images urls

docs: Fix home page images urls #12

Workflow file for this run

name: Prettify code
on: [push]
jobs:
prettify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Prettify code
run: npm run prettify
- name: Configure git user
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Commit changes
run: |
git add .
git diff-index --quiet HEAD || git commit -m "style: Prettify code"
- name: Push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: git push origin master