Skip to content

Added demo video to README #376

Added demo video to README

Added demo video to README #376

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
format:
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Fix code with ESLint
run: yarn lint:fix
- name: Format code with Prettier
run: yarn format
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Format code
branch: ${{ github.head_ref }}