Skip to content

Commit

Permalink
chore(chromatic): Using yarn to install deps in the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
planctus committed Oct 3, 2024
1 parent 51d5a85 commit 41b3d33
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ jobs:
chromatic-ec:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.9.0
- name: Install dependencies
run: npm install
run: yarn install --frozen-lockfile
- name: Run Chromatic for EC
run: npm run chromatic-EC
env:
Expand All @@ -24,10 +26,12 @@ jobs:
chromatic-eu:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.9.0
- name: Install dependencies
run: npm install
run: yarn install --frozen-lockfile
- name: Run Chromatic for EU
run: npm run chromatic-EU
env:
Expand Down

0 comments on commit 41b3d33

Please sign in to comment.