-
-
Notifications
You must be signed in to change notification settings - Fork 4
98 lines (91 loc) · 2.76 KB
/
main.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
89
90
91
92
93
94
95
96
97
98
name: 🚀
on:
pull_request: {}
push: { branches: [main] }
jobs:
test:
name: 🧪 Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: install dependencies
run: yarn && yarn --cwd ./functions
- name: run linter
run: yarn lint && yarn --cwd ./functions lint
- name: run tests
run: yarn test && yarn --cwd ./functions test
# - name: Upload test results
# uses: actions/upload-artifact@v1
# with:
# name: Test results
# path: "**/artifacs"
build:
name: 🛠 Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: install dependencies
run: yarn && yarn --cwd ./functions
- name: build
run: yarn --cwd ./functions build
testDeploy:
name: Test Deploy
needs: [test, build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: install dependencies
run: yarn && yarn --cwd ./functions
- name: Deploy test to Firebase
uses: w9jds/firebase-action@v13.10.2
with:
args: deploy --only functions:testFunction
env:
GCP_SA_KEY: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_UNITY_CI_VERSIONS }}'
- name: Call Test Function
run: curl -f -s -S -X POST https://testfunction-wbe4ukn6tq-ey.a.run.app
- name: Cleanup Firebase Test
uses: w9jds/firebase-action@v13.10.2
if: always()
with:
args: functions:delete testFunction --force
env:
GCP_SA_KEY: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_UNITY_CI_VERSIONS }}'
deploy:
name: ✨ Deploy
needs: [test, build, testDeploy]
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: install dependencies
run: yarn && yarn --cwd ./functions
- name: Deploy to Firebase
uses: w9jds/firebase-action@v13.10.2
with:
args: deploy
env:
GCP_SA_KEY: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_UNITY_CI_VERSIONS }}'
- name: Cleanup Firebase Test
uses: w9jds/firebase-action@v13.10.2
if: always()
with:
args: functions:delete testFunction --force
env:
GCP_SA_KEY: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_UNITY_CI_VERSIONS }}'