-
Notifications
You must be signed in to change notification settings - Fork 0
88 lines (74 loc) · 2.17 KB
/
firebase-deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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:
# Step 1: Checkout the code
- name: 📥 Checkout Code
uses: actions/checkout@v4
# Step 2: Setup Node.js and enable caching
- name: 🛠️ Setup Node
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
# Step 3: Restore dependencies cache
- name: 📂 Restore npm cache
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-cache-
# Step 4: Install dependencies
- name: 📂 Install Packages
run: npm ci
# Step 5: Run linter
- name: 🚨 Lint Code
run: npm run lint:fix
# Step 6: Format code
- name: 🎨 Format Code
run: npm run format
# Step 7: Build the project
- name: 🧱 Build Project
run: npm run build
# Step 8: Cache the build output
- name: 📦 Cache build output
uses: actions/cache@v4
with:
path: |
dist
key: ${{ runner.os }}-build-cache-${{ hashFiles('src/**', 'public/**') }}
restore-keys: |
${{ runner.os }}-build-cache-
# Step 9: Run tests
- name: 🧪 Run Tests with Vitest
if: success()
run: npm run test:ci
# Step 10: Install Firebase CLI (use cache for global installs)
- name: 🌍 Install Firebase Tools
if: success()
run: npm install -g firebase-tools
# Step 11: Deploy to Firebase
- name: 🚀 Deploy to Firebase
if: success()
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
run: firebase deploy --non-interactive