Created
November 9, 2019 19:07
-
-
Save adamhenson/90ecc651b2eec1032f074be80f3dc022 to your computer and use it in GitHub Desktop.
Revisions
-
adamhenson created this gist
Nov 9, 2019 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ name: Lighthouse Check on: [pull_request] jobs: lighthouse-check: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - run: mkdir /tmp/artifacts - name: Run Lighthouse uses: foo-software/lighthouse-check-action@master with: outputDirectory: /tmp/artifacts urls: 'https://www.foo.software,https://www.foo.software/contact' - name: Upload artifacts uses: actions/upload-artifact@master with: name: Lighthouse reports path: /tmp/artifacts