Standardize animation timings across all components (#360) #243
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: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build_deploy: | |
if: ${{ github.repository == 'primer/brand' }} | |
name: Production | |
# SHA for security hardening. Points at last verified HEAD of main branch. | |
uses: primer/.github/.github/workflows/deploy.yml@0cec9b9914f358846163f2428663b58da41028c9 | |
with: | |
node_version: 16 | |
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/ |