Skip to content

Migrate rubin-style-dictionary into squareone #37

Migrate rubin-style-dictionary into squareone

Migrate rubin-style-dictionary into squareone #37

Workflow file for this run

name: 'Chromatic'
'on':
{}
# push:
# branches-ignore:
# - 'dependabot/**'
# - 'renovate/**'
# tags-ignore:
# - '*'
jobs:
chromatic-deployment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # get full Git history
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Set up node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Authenticate GitHub Packages
run: |
echo "//npm.pkg.github.com/:_authToken=${NPM_PKG_TOKEN}" > ~/.npmrc
env:
NPM_PKG_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install npm packages
run: pnpm install
- name: Publish to Chromatic
if: github.ref != 'refs/heads/main'
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_TOKEN }}
storybookBaseDir: apps/squareone
- name: Publish new baseline Chromatic
if: github.ref == 'refs/heads/main'
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_TOKEN }}
storybookBaseDir: apps/squareone
autoAcceptChanges: true