chore: replace depcheck with knip #7
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: Web - Test - PR Deploy Preview and Lighthouse Test | |
on: | |
pull_request: | |
defaults: | |
run: | |
working-directory: ./platforms/web | |
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@v3 | |
- 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: | |
entryPoint: './platforms/web' | |
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@v3 | |
- 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.cjs |