-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update_workflows * update publish workflow * Remove chromatic from package.json * now skip docs build in chromatic workflow * Revert "Remove chromatic from package.json" This reverts commit 444208f. * turbosnap test * Update CI workflow to prevent build duplication. build_doc used to rebuild all the components, after they were just built * Revert "turbosnap test" This reverts commit 54c7ca4. * add build step to release step * change the install step so it doesn't create a new lockfile when releasing
- Loading branch information
1 parent
6e991df
commit fa57ac7
Showing
4 changed files
with
123 additions
and
221 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,59 @@ | ||
name: 'Chromatic' | ||
# Chromatic Main and Active PRs only | ||
# Trigger example found here: https://github.com/chromaui/chromatic-cli/blob/main/.github/workflows/chromatic-main-and-prs.yml | ||
|
||
name: Chromatic | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'packages/**' | ||
branches-ignore: | ||
branches: | ||
- main | ||
- dependabot/* | ||
- changeset-release/* | ||
pull_request: | ||
# Workflows will not run on pull_request activity if the pull request has a merge conflict. The merge conflict must be resolved first. | ||
# By default, a workflow only runs when a pull_request event's activity type is opened, synchronize, or reopened. | ||
branches-ignore: | ||
- changeset-release/* | ||
- dependabot/* | ||
|
||
jobs: | ||
chromatic-deployment: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18.x' | ||
- name: Cache Node.js modules | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.OS }}-node-${{ hashFiles('**/yarn.lock')}} | ||
restore-keys: | | ||
${{ runner.OS }}-node- | ||
${{ runner.OS }}- | ||
- run: yarn install --frozen-lockfile | ||
- run: yarn build | ||
- name: Publish to Chromatic | ||
uses: chromaui/action@v1 | ||
with: | ||
token: ${{ secrets.CHROMATIC_TOKEN }} | ||
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | ||
chromatic-deployment: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
steps: | ||
- name: Checkout Commit | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: ".nvmrc" | ||
|
||
- name: Cache Node.js modules | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.OS }}-node-${{ hashFiles('**/yarn.lock')}} | ||
restore-keys: | | ||
${{ runner.OS }}-node- | ||
${{ runner.OS }}- | ||
- name: Install dependencies | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Run build Shared components | ||
run: yarn build:shared | ||
|
||
- name: Run build Components | ||
run: yarn build:components | ||
|
||
- name: Publish to Chromatic | ||
uses: chromaui/action@v1 | ||
with: | ||
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | ||
traceChanged: true | ||
onlyChanged: true # TurboSnap | ||
exitOnceUploaded: true # The PRs will be marked as success/failure based on the Chromatic build status | ||
skip: ${{ github.event.pull_request.draft == true }} |
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
Oops, something went wrong.