Skip to content

💄 Update Navbar button variant and styling for improved UI #14

💄 Update Navbar button variant and styling for improved UI

💄 Update Navbar button variant and styling for improved UI #14

Workflow file for this run

name: Prettier Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
prettier:
name: Run Prettier
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the code
- name: Checkout repository
uses: actions/checkout@v3
# Step 2: Set up Node.js (Make sure to use the version your project requires)
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # Specify your Node.js version
# Step 3: Install dependencies
- name: Install dependencies
run: npm install
# Step 4: Run Prettier
- name: Run Prettier
run: npm run format:check