-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase-hosting-pull-request.yml
More file actions
46 lines (45 loc) · 1.62 KB
/
firebase-hosting-pull-request.yml
File metadata and controls
46 lines (45 loc) · 1.62 KB
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
# This file was auto-generated by the Firebase CLI
# https://github.com/firebase/firebase-tools
name: Deploy to Firebase Hosting on PR
on: pull_request
permissions:
checks: write
contents: read
pull-requests: write
jobs:
build_and_preview:
if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci && npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
id: action-hosting-deploy
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_SU_POLSTAROVA_BITVA }}'
projectId: su-polstarova-bitva
outputs:
urls: ${{ steps.action-hosting-deploy.outputs.urls }}
lighthouse:
name: 'Run lighthouse check on preview'
runs-on: ubuntu-latest
needs: build_and_preview
steps:
- uses: actions/checkout@master
- name: Lighthouse
uses: foo-software/lighthouse-check-action@master
id: lighthouseCheck
with:
urls: ${{ fromJson(needs.build_and_preview.outputs.urls)[0] }}
gitHubAccessToken: '${{ secrets.GITHUB_TOKEN }}'
prCommentEnabled: true
- name: Verify Lighthouse Check results
uses: foo-software/lighthouse-check-status-action@master
with:
lighthouseCheckResults: ${{ steps.lighthouseCheck.outputs.lighthouseCheckResults }}
minAccessibilityScore: '50'
minBestPracticesScore: '50'
minPerformanceScore: '50'
minProgressiveWebAppScore: '50'
minSeoScore: '50'