Skip to content

fixed the styling of get started button #61

fixed the styling of get started button

fixed the styling of get started button #61

# workflow to check if the formatting is following the prettierrc
name: Prettier Formatting Check
on:
pull_request:
branches:
- master
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: npm install --save-dev prettier
- name: Run Prettier check
run: |
npx prettier --check "**/*.{js,ts,tsx,jsx,json,css}" || (echo "Prettier check failed. Please run 'npm run prettier:format' locally to fix the formatting issues and push the changes." && exit 1)