We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17d227f commit 76ee448Copy full SHA for 76ee448
.github/workflows/chromatic.yml
@@ -17,8 +17,20 @@ jobs:
17
- uses: actions/checkout@v3
18
with:
19
fetch-depth: 0 # Required to retrieve git history
20
+
21
+ - name: Set up Node.js
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: 22 # Yarn 4 requires Node.js >= 18
25
26
+ - name: Enable Corepack
27
+ run: corepack enable
28
29
+ - name: Use Yarn 4.5.0
30
+ run: corepack prepare yarn@4.5.0 --activate
31
32
- name: Install dependencies
- run: yarn install --frozen-lockfile
33
+ run: yarn install --immutable
34
# Adds Chromatic as a step in the workflow
35
- name: Publish to Chromatic
36
uses: chromaui/action@v1
0 commit comments