-
Notifications
You must be signed in to change notification settings - Fork 4
38 lines (37 loc) · 1.14 KB
/
build-and-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
name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Fetch repo
uses: actions/checkout@v2
with:
ref: master
- name: cache node modules
uses: actions/cache@v1
env:
cache-name: cache-node-modules
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('vueapp/package-lock.json') }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}-
- name: Install node
uses: actions/setup-node@master
- name: Install dependencies
run: cd vueapp && npm ci
- name: Lint
run: cd vueapp && npm run lint
- name: Build
run: cd vueapp && npm run build
- name: Deploy SayLah app with Firebase
uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_SAYLAH }}'
channelId: live
projectId: saylah