Skip to content

refactor: Move all GoalTracker into Home. #35

refactor: Move all GoalTracker into Home.

refactor: Move all GoalTracker into Home. #35

name: Firebase Auto Deploy
on:
push:
branches:
- main
paths:
- 'src/**'
- 'public/**'
- 'firebase.json'
- 'package.json'
- 'index.html'
- 'vitest.config.js'
- '.firebaserc'
- '.github/workflows/*'
concurrency:
group: firebase-deploy-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-deploy:
name: πŸ› οΈ Build, Test, and Deploy
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Checkout Code
uses: actions/checkout@v4
- name: πŸ› οΈ Setup Node
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: πŸ“‚ Install Packages
run: npm ci
- name: 🚨 Lint Code
run: npm run lint:fix
- name: 🎨 Format Code
run: npm run format
- name: πŸ§ͺ Run Tests with Vitest
run: npm run test:ci
- name: 🧱 Build Project
run: npm run build
- name: 🌍 Install Firebase Tools
if: success()
run: npm install -g firebase-tools
- name: πŸš€ Deploy to Firebase
if: success()
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
run: firebase deploy --non-interactive