-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (61 loc) · 1.98 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
name: Firebase Auto Deploy
on:
push:
branches:
- main
paths:
- 'src/**' # Changes to the source code
- 'public/**' # Changes to the public folder
- 'firebase.json' # Changes to the Firebase configuration
- 'package.json' # Changes to the package.json file
- 'index.html' # Changes to the index.html file
- 'vitest.config.js' # Changes to the Vitest configuration
- '.firebaserc' # Changes to the Firebase configuration
- '.github/workflows/*' # Changes to the workflow file
concurrency:
group: firebase-deploy-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: 🧪 Test before Build
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
# 🚨 Run Lint check
- name: 🚨 Run Lint
run: npm run lint:fix | tee lint-results.txt
# 🎨 Run Prettier format check
- name: 🎨 Run Prettier
run: npm run format | tee prettier-results.txt
- name: 🧪 Run Tests with Vitest
run: npm run test:ci
deploy:
name: 🚀 Deploy to Firebase
needs: build # Only run this job if the build job is successful
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: 🧱 Build
run: npm run build
- name: 🌍 Install Firebase Tools
run: npm install -g firebase-tools
- name: 🚀 Deploy to Firebase
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
run: firebase deploy --token "${{ secrets.FIREBASE_TOKEN }}" --non-interactive