Skip to content

chore(chromatic): Basic config #2

chore(chromatic): Basic config

chore(chromatic): Basic config #2

Workflow file for this run

name: Chromatic CI
on:
push:
branches:
- v*-dev
pull_request:
branches:
- v*-dev
jobs:
chromatic-ec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.9.0
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Chromatic for EC
run: npm run chromatic-EC
env:
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
chromatic-eu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.9.0
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run Chromatic for EU
run: npm run chromatic-EU
env:
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN_EU }}