Skip to content

[pull] master from backstage:master #1436

[pull] master from backstage:master

[pull] master from backstage:master #1436

name: Accessibility
on:
# NOTE: If you change these you must update verify_accessibility-noop.yml as well
pull_request:
branches: [master]
paths:
- 'lighthouserc.js'
- '.github/workflows/verify_accessibility.yml'
- 'plugins/catalog/src/**'
- 'plugins/catalog-react/src/**'
- 'plugins/techdocs/src/**'
- 'plugins/techdocs-react/src/**'
- 'plugins/scaffolder/src/**'
- 'plugins/scaffolder-react/src/**'
- 'plugins/search/src/**'
- 'plugins/search-react/src/**'
jobs:
lhci:
name: Accessibility
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Use Node.js 20.x
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 20.x
- name: yarn install
uses: backstage/actions/yarn-install@25145dd4117d50e1da9330e9ed2893bc6b75373e # v0.6.15
with:
cache-prefix: ${{ runner.os }}-v20.x
- name: run Lighthouse CI
run: |
yarn dlx @lhci/[email protected] autorun
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}