Skip to content

Update tailwind.config.ts #5

Update tailwind.config.ts

Update tailwind.config.ts #5

Workflow file for this run

name: Deploy Healthcare App
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install pnpm
run: npm install -g pnpm
- name: Install Dependencies
run: pnpm install
- name: Build App
run: pnpm run build
# Optional: Test Step
# - name: Run Tests
# run: pnpm test
# Example: Deploy to GitHub Pages (adjust if needed)
# - name: Deploy
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./dist # change this if your build folder is different