fix: fe crash due to referencing server env var NODE_ENV (#384) #672
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
# .github/workflows/chromatic.yml | |
# Workflow name | |
name: 'Chromatic' | |
# Event for the workflow | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
types: [opened, reopened, synchronize] | |
# List of jobs | |
jobs: | |
chromatic-deployment: | |
# Operating System | |
runs-on: ubuntu-latest | |
env: | |
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
if: ${{ !endsWith(github.actor , 'bot') && !endsWith(github.actor, '[bot]')}} | |
# Job steps | |
steps: | |
- uses: actions/checkout@v4 | |
if: env.CHROMATIC_PROJECT_TOKEN != '' | |
with: | |
fetch-depth: 0 # Required so Chromatic can compare commits | |
- uses: ./.github/actions/setup | |
if: env.CHROMATIC_PROJECT_TOKEN != '' | |
- name: Load .env file | |
if: env.CHROMATIC_PROJECT_TOKEN != '' | |
uses: xom9ikk/dotenv@v2 | |
with: | |
mode: test | |
- name: Publish to Chromatic | |
if: env.CHROMATIC_PROJECT_TOKEN != '' | |
uses: chromaui/action@latest | |
with: | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
onlyChanged: true | |
exitOnceUploaded: true | |
autoAcceptChanges: main | |
# Skip running Chromatic on dependabot PRs | |
skip: dependabot/** |