Skip to content

ci: modernize workflows, fix cache, and add lighthouse auditing #1

ci: modernize workflows, fix cache, and add lighthouse auditing

ci: modernize workflows, fix cache, and add lighthouse auditing #1

Workflow file for this run

name: Lighthouse CI
on:
pull_request:
branches:
- main
jobs:
lighthouse:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- name: Build Jekyll Site
run: |
gem install bundler
bundle install
bundle exec jekyll build
- name: Run Lighthouse CI
uses: treosh/[email protected]
with:
configPath: './lighthouserc.json'
uploadArtifacts: true
temporaryPublicStorage: true
runs: 3