chore(project): add anchor tags for better seo #928
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Preview and Lighthouse | |
on: | |
pull_request: | |
branches: ['develop', 'feat/*', 'feature/*', 'release'] | |
jobs: | |
build_and_preview: | |
name: Build and preview | |
runs-on: ubuntu-latest | |
outputs: | |
output1: ${{ steps.firebase_hosting_preview.outputs.details_url }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build Preview Link | |
env: | |
APP_PLAYER_LICENSE_KEY: ${{ secrets.PLAYER_LICENSE_KEY }} | |
run: yarn && MODE=preview yarn build | |
- uses: FirebaseExtended/action-hosting-deploy@v0 | |
id: firebase_hosting_preview | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT }}' | |
expires: 30d | |
lhci: | |
name: Lighthouse | |
runs-on: ubuntu-latest | |
needs: build_and_preview | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Lighthouse CI | |
run: sudo yarn global add @lhci/[email protected] | |
- name: Run Lighthouse CI | |
run: lhci autorun --collect.url=${{ needs.build_and_preview.outputs.output1 }}?app-config=gnnuzabk --config=./lighthouserc.js |