Skip to content

Made homepage responsive #4

Made homepage responsive

Made homepage responsive #4

Workflow file for this run

name: Format
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- run: npm install --ci
- run: npm run format-code
- name: Commit code after format
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply formatting changes
branch: ${{ github.head_ref }}