Merge pull request #112 from Team-Senifit/release-1.0.1 #74
This file contains hidden or 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
| name: Chromatic — develop full build | |
| on: | |
| push: | |
| branches: [develop] | |
| concurrency: | |
| group: chromatic-develop-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| chromatic: | |
| runs-on: ubuntu-latest | |
| env: | |
| TZ: Asia/Seoul | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - run: npm ci | |
| - name: Run Chromatic (full build, auto-accept) | |
| run: > | |
| npx chromatic | |
| --project-token "${{ secrets.CHROMATIC_PROJECT_TOKEN }}" | |
| --force-rebuild | |
| --auto-accept-changes | |
| --exit-zero-on-changes | |
| --exit-once-uploaded |