refactor: Move all GoalTracker into Home. #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |