Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update chromatic workflow #2917

Merged
merged 8 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,28 @@
name: 'Chromatic'

name: "Chromatic"
on:
workflow_dispatch:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry I did not notice this before but you have two action triggers here (workflow_dispatch and push) just thought I should ask if this is intentional. Normally we only have one or the other

push:
branches: [ integration ]
branches:
- integration

jobs:
chromatic-deployment:
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/webapp
strategy:
matrix:
node-version: [ 16 ]
steps:
- uses: actions/checkout@v1
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: pnpm/[email protected]
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 6.26.1
version: latest
- name: Install dependencies
run: pnpm install

- name: Publish to Chromatic
env:
NODE_OPTIONS: "--max-old-space-size=8192"
run: ./node_modules/.bin/chromatic --project-token ${{ secrets.CHROMATIC_PROJECT_TOKEN }}

7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,13 @@ Notes:
- [container_name] are litefarm-db, litefarm-api and litefarm-web.
- [ENV] are beta and prod

## Storybook

You can use Storybook to visualize and test out the UI components used throughout the app.

- To view Storybook on your local environment, run `pnmp storybook` on the `packages/webapp` directory and navigate to http://localhost:6006
- To view the deployed version of Storybook, which is updated automatically with the latest changes on the integration branch, go to https://65316fc4f177c73a9181a843-yobioprfjv.chromatic.com

## How to Contribute

Please email: [email protected] for more details.
4 changes: 1 addition & 3 deletions packages/webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
"preview": "vite preview",
"lint": "eslint src",
"i18n": "npx i18next 'src/**/*.{js,jsx,ts,tsx}' -c src/locales/i18next-parser.config.cjs",
"chromatic": "npx chromatic --project-token gb9nrdyzl8b",
"chromatic-local": "./node_modules/.bin/chromatic --project-token 594bdec1c518",
"format": "npx prettier --write ./src",
"storybook": "storybook dev -p 6006 public",
"build-storybook": "storybook build",
Expand Down Expand Up @@ -84,7 +82,7 @@
"@storybook/addon-links": "7.0.27",
"@storybook/addon-mdx-gfm": "7.0.27",
"@storybook/addon-viewport": "7.0.27",
"@storybook/jest": "^0.0.10",
"@storybook/jest": "^0.2.3",
"@storybook/react": "7.0.27",
"@storybook/react-vite": "7.0.27",
"@storybook/test-runner": "^0.9.4",
Expand Down
Loading