From 20ccde0073fa60bae4b75037d5ed44b8d3609bb9 Mon Sep 17 00:00:00 2001 From: Gabo Esquivel Date: Sat, 6 Apr 2024 01:03:04 -0600 Subject: [PATCH] devops: debug github actions (#71) * devops: debug github actions * devops: use actions/checkout v4 * devops: add protocol to lhci url --- .github/workflows/lighthouse.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lighthouse.yml b/.github/workflows/lighthouse.yml index 0deae76b..71a11e16 100644 --- a/.github/workflows/lighthouse.yml +++ b/.github/workflows/lighthouse.yml @@ -28,13 +28,13 @@ jobs: vercel_team_id: team_7PAgeqjbXkY6qdxNIEKLbVSC - name: Get URL run: echo "https://${{ steps.vercel_preview_url.outputs.preview_url }}" - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Audit preview URL with Lighthouse id: lighthouse_audit uses: treosh/lighthouse-ci-action@v3 with: urls: | - ${{ steps.vercel_preview_url.outputs.vercel_preview_url }} + "https://${{ steps.vercel_preview_url.outputs.preview_url }}" uploadArtifacts: true temporaryPublicStorage: true - name: Format lighthouse score