-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (47 loc) · 1.28 KB
/
server.yaml
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
name: server_ci
on:
push:
branches: ["main"]
paths: ['src/server/**', 'test/server/**', 'bin/**']
jobs:
test_server:
runs-on: ubuntu-latest
env:
NODE_ENV: development
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: echo "${{ secrets.ENV_FILE }}" > .env
- run: npm run lint
- run: npm run test:unit
- uses: codecov/codecov-action@v4
with:
file: ./coverage/server/clover.xml
token: ${{ secrets.CODECOV_TOKEN }}
- run: npm run build:server
- uses: actions/upload-artifact@master
with:
name: build
path: build
deploy_server:
runs-on: ubuntu-latest
needs: test_server
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Download Build Folder
uses: actions/download-artifact@master
with:
name: build
path: build
- run: npm ci
- name: Deploy to Firebase
uses: w9jds/firebase-action@master
with:
args: deploy --only functions:auth,functions:data --project ${{ secrets.FIREBASE_PROJECT_ID }}