Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Commit

Permalink
fix deepscan issues
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Feb 19, 2021
1 parent 06177eb commit 229cd7f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/new_lighthouse.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Test Lighthouse Check with Minimum Score Enforcement

on:
push:
branches:
- main

jobs:
lighthouse-check:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@master
- run: npm install
- name: Run Lighthouse
uses: foo-software/lighthouse-check-action@master
id: lighthouseCheck
with:
accessToken: ${{ steps.lighthouseCheck.outputs.lighthouseCheckResults }}
apiToken: ${{ secrets.LIGHTHOUSE_API_TOKEN }}
urls: ${{ secrets.LIGHTHOUSE_URL }}
- name: Handle Lighthouse Check results
uses: foo-software/lighthouse-check-status-action@master
with:
commentUrl: "push"
lighthouseCheckResults: ${{ steps.lighthouseCheck.outputs.lighthouseCheckResults }}
minAccessibilityScore: "0"
minBestPracticesScore: "0"
minPerformanceScore: "0"
minProgressiveWebAppScore: "0"
minSeoScore: "0"

0 comments on commit 229cd7f

Please sign in to comment.