Skip to content

fix: update the cli demo gif #77

fix: update the cli demo gif

fix: update the cli demo gif #77

Workflow file for this run

name: Format
on: [push]
jobs:
format:
name: Format Files
runs-on: ubuntu-latest
steps:
- name: Chekout Repo
uses: actions/checkout@v3
- name: Node Setup
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install Dependencies
run: npm ci
- name: Prettier
run: npm run format
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: stefanzweifel/git-auto-commit-action@v4
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
with:
commit_message: "style: format files"