Remove the hover text-decoration transition in InlineLink
, Accordion
, Timeline
and align Prose
with the updated InlineLink
styles
#1735
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: Deploy | |
on: | |
pull_request_target: | |
permissions: | |
checks: write | |
contents: read | |
deployments: write | |
pages: write | |
id-token: write | |
jobs: | |
deploy: | |
if: ${{ github.repository != github.event.pull_request.head.repo.full_name }} | |
name: Preview | |
# SHA for security hardening. Points at 2.1.1 release | |
uses: primer/.github/.github/workflows/deploy_preview.yml@2a60f4cc62889bd218f3019ce4a090ff89b71cca | |
with: | |
node_version: 18 | |
install: npm ci --legacy-peer-deps && cd apps/docs && npm ci --legacy-peer-deps && cd .. | |
build: npm run build && npm run build:docs && npm run build:storybook | |
output_dir: apps/docs/public/ |