-
Notifications
You must be signed in to change notification settings - Fork 55
feat: Check pull requests using Lighthouse CI #96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
7c2592d
feat: Run Lighthouse in CI
smockle 4dbb1cf
feat: Run Lighthouse CI via GitHub Actions
smockle e75b78a
chore: Upload Lighthouse CI results
smockle c04986c
fix: Run 'setup/ruby' action so 'bundle' is available
smockle 0a12bfc
fix: Use Ruby 2.7 in workflow
smockle a85209a
feat: Fix and speed up Lighthouse CI
smockle 1fba430
fix: GitHub Metadata warning in 'Build docs' step
smockle 6bca7db
fix: GitHub Metadata warning in 'Run Lighthouse CI' step
smockle File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| name: Lighthouse | ||
|
|
||
| on: [pull_request] | ||
|
|
||
| jobs: | ||
| lhci: | ||
| name: Lighthouse | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout the project | ||
| uses: actions/checkout@v2 | ||
|
|
||
| - name: Use Node.js 14.x (LTS) | ||
| uses: actions/setup-node@v1 | ||
| with: | ||
| node-version: 14.x | ||
|
|
||
| - name: Use Ruby 2.7 | ||
| uses: actions/setup-ruby@v1 | ||
| with: | ||
| ruby-version: '2.7' | ||
|
|
||
| - name: Restore npm cache | ||
| uses: actions/cache@v2 | ||
| with: | ||
| path: ~/.npm | ||
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-node- | ||
|
|
||
| - name: Restore Bundler cache | ||
| uses: actions/cache@v2 | ||
| with: | ||
| path: docs/vendor/bundle | ||
| key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-gems- | ||
|
|
||
| - name: Configure Bundler cache | ||
| run: | | ||
| bundle config path vendor/bundle | ||
|
|
||
| - name: Install dependencies | ||
| run: | | ||
| npm ci | ||
| cd docs && bundle install && cd .. | ||
|
|
||
| - name: Build docs | ||
| run: npm run build:docs | ||
| env: | ||
| JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
|
||
| - name: Run Lighthouse CI | ||
| run: npx lhci autorun | ||
| env: | ||
| JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| LHCI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,4 +2,5 @@ node_modules | |
| _site | ||
| *.tsbuildinfo | ||
| lib/ | ||
| .jekyll-cache | ||
| .jekyll-cache | ||
| .lighthouseci | ||
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 characters
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 characters
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 characters
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 characters
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 characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| { | ||
| "ci": { | ||
| "collect": { | ||
| "url": ["http://localhost:4000/"], | ||
| "startServerCommand": "cd docs && bundle exec jekyll serve" | ||
| }, | ||
| "assert": { | ||
| "preset": "lighthouse:no-pwa", | ||
| "assertions": { | ||
| "unused-css-rules": "off", | ||
| "uses-text-compression": "off", | ||
| "render-blocking-resources": "off", | ||
| "uses-rel-preload": "off", | ||
| "first-contentful-paint": ["warn", {"minScore": 0.8}], | ||
| "first-meaningful-paint": ["warn", {"minScore": 0.8}], | ||
| "largest-contentful-paint": ["warn", {"minScore": 0.8}] | ||
| } | ||
| }, | ||
| "upload": { | ||
| "target": "temporary-public-storage" | ||
| } | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.