Skip to content

Merge pull request #310 from storybookjs/fix/export-stories-specifiers #554

Merge pull request #310 from storybookjs/fix/export-stories-specifiers

Merge pull request #310 from storybookjs/fix/export-stories-specifiers #554

Workflow file for this run

name: Chromatic
on: push
env:
CI: true
COREPACK_INTEGRITY_KEYS: 0
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Enable corepack (for pnpm)
# https://nodejs.org/api/corepack.html
run: corepack enable
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version-file: '.nvmrc'
- name: Install Node.js dependencies with pnpm
# https://pnpm.io/cli/install
run: >
pnpm install
--frozen-lockfile
- name: Build package
run: >
pnpm run build
- name: Upload to Chromatic
uses: chromaui/action@v11
with:
token: ${{ secrets.GITHUB_TOKEN }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
exitOnceUploaded: true
- name: Upload "Examples" to Chromatic
uses: chromaui/action@v11
env:
EXAMPLES_ONLY: true
with:
token: ${{ secrets.GITHUB_TOKEN }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN_EXAMPLES_ONLY }}
onlyChanged: true
exitOnceUploaded: true