-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
83cd6b6
commit 09afb00
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Lighthouse CI | ||
on: [push] | ||
jobs: | ||
lighthouse: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18.x | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
- run: | | ||
bundle install | ||
bundle exec jekyll build | ||
- name: run Lighthouse CI | ||
run: | | ||
npm install -g @lhci/[email protected] | ||
lhci autorun | ||
# - name: Audit URLs using Lighthouse | ||
# uses: treosh/lighthouse-ci-action@v10 | ||
# with: | ||
# urls: | | ||
# https://example.com/ | ||
# https://example.com/blog | ||
# budgetPath: ./budget.json # test performance budgets | ||
# configPath: ".github/lighthouse/lighthouserc.js" | ||
# uploadArtifacts: true # save results as an action artifacts | ||
# temporaryPublicStorage: true # upload lighthouse report to the temporary storage |