Default to primitive CSS variable values for SASS typography line-height and size #3245
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: | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
deployments: write | |
issues: write | |
statuses: write | |
checks: write | |
jobs: | |
deploy: | |
if: ${{ github.repository == 'primer/css' }} | |
uses: primer/.github/.github/workflows/[email protected] | |
name: Deploy preview | |
secrets: | |
gh_token: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
node_version: 20 | |
install: npm i && cd docs && npm i && cd .. | |
build: npm run build:docs:preview | |
output_dir: docs/public | |
deploy-storybook: | |
if: ${{ github.repository == 'primer/css' }} | |
name: Preview Storybook | |
runs-on: ubuntu-latest | |
needs: deploy | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: chrnorm/[email protected] | |
name: Create GitHub deployment for storybook | |
id: storybook | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
environment: Storybook Preview | |
environment_url: '${{ needs.deploy.outputs.deployment_url }}/storybook' | |
- name: Update storybook deployment status (success) | |
if: success() | |
uses: chrnorm/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
environment-url: '${{ needs.deploy.outputs.deployment_url }}/storybook' | |
state: 'success' | |
deployment-id: ${{ steps.storybook.outputs.deployment_id }} | |
- name: Update storybook deployment status (failure) | |
if: failure() | |
uses: chrnorm/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
state: 'failure' | |
deployment-id: ${{ steps.storybook.outputs.deployment_id }} |