Skip to content

improve hero margin and responsiveness #13

improve hero margin and responsiveness

improve hero margin and responsiveness #13

Workflow file for this run

name: Code Quality Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
prettier:
runs-on: ubuntu-latest
name: Prettier
steps:
- name: git-checkout
uses: actions/checkout@v3
- name: Install all dependencies
run: npm ci
- name: Prettier
run: npm run format:check
lint:
runs-on: ubuntu-latest
name: ESLint
steps:
- name: git-checkout
uses: actions/checkout@v3
- name: Install all dependencies
run: npm ci
- name: ESLint
run: npm run lint