Skip to content

arkea fallback

arkea fallback #74

Workflow file for this run

name: ♿️ A11Y CI with Lighthouse
on:
pull_request:
paths:
- '**/.github/workflows/lighthouse.yml'
- '**/.github/workflows/lighthouse-comment.js'
- '**/.github/workflows/lighthouse-budget.json'
workflow_dispatch:
inputs:
website:
required: true
type: string
description: Website to audit
env:
WEBSITE_TO_AUDIT: ${{ inputs.website || 'https://www.cmb.fr/reseau-bancaire-cooperatif/web/devenir-client-3' }}
jobs:
Lighthouse-CLI:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# Using the Lighthouse GitHub Action
# @see https://github.com/marketplace/actions/lighthouse-ci-action
- name: Run Lighthouse GitHub Action
uses: treosh/lighthouse-ci-action@v9
id: lighthouse_audit
with:
urls: |
$WEBSITE_TO_AUDIT
budgetPath: .github/workflows/lighthouse-budget.json # test performance budgets
uploadArtifacts: true # save results as an action artifacts
temporaryPublicStorage: true # upload lighthouse report to the temporary storage
- name: Format lighthouse score
if: always()
id: format_lighthouse_score
uses: actions/github-script@v5
with:
script: |
const lighthouseCommentMaker = require('./.github/workflows/lighthouse-comment.js');
const lighthouseOutputs = {
manifest: ${{ steps.lighthouse_audit.outputs.manifest }},
links: ${{ steps.lighthouse_audit.outputs.links }}
};
const comment = lighthouseCommentMaker({ lighthouseOutputs });
core.setOutput("comment", comment);
- name: Add Lighthouse stats as comment
if: always()
uses: marocchino/sticky-pull-request-comment@v2
with:
GITHUB_TOKEN: ${{ secrets.GHTOKEN }}
header: lighthouse-comment
recreate: true
message: ${{ steps.format_lighthouse_score.outputs.comment }}