feat: make page header more customizable + add grid layout capabilities #3
Workflow file for this run
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: Build and deploy Storybook (Fork) | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
deploy-storybooks: | |
# TODO: Move this to deployment only | |
environment: Storybook | |
env: | |
PIA_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN_PIA }} | |
AA_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN_AA }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: npm ci | |
- name: Build PIA Storybook | |
run: npx nx run portal-integration-angular:build-storybook | |
- name: Publish to PIA Chromatic | |
uses: chromaui/action@latest | |
if: env.PIA_TOKEN != null | |
with: | |
projectToken: ${{ env.PIA_TOKEN }} | |
storybookBuildDir: dist/storybook/portal-integration-angular | |
skip: 'dependabot/**' | |
- name: Build AA Storybook | |
run: npx nx run angular-accelerator:build-storybook | |
- name: Publish to AA Chromatic | |
uses: chromaui/action@latest | |
if: env.AA_TOKEN != null | |
with: | |
projectToken: ${{ env.AA_TOKEN }} | |
storybookBuildDir: dist/storybook/angular-accelerator | |
skip: 'dependabot/**' |