Remove the hover text-decoration transition in InlineLink
, Accordion
, Timeline
and align Prose
with the updated InlineLink
styles
#4834
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
name: UI test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
accessibility: | |
if: ${{ github.repository == 'primer/brand' }} | |
name: Accessibility | |
runs-on: | |
labels: ubuntu-latest-16-cores | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install dependencies | |
run: npm ci --legacy-peer-deps && cd apps/docs && npm ci --legacy-peer-deps | |
- name: Build dependencies | |
run: npm run build:lib && cd apps/storybook && npx storybook build | |
- name: Serve Storybook and run tests | |
run: npx start-server-and-test 'npm run start:axe --workspace=apps/storybook' 6006 'npm run test:axe' |