Skip to content

Commit

Permalink
compile deps in chromatic job
Browse files Browse the repository at this point in the history
  • Loading branch information
Frizi committed Dec 19, 2024
1 parent fe874c6 commit 40f2820
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/gui-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,10 @@ jobs:
fail-on-warning: false

- name: ❌ Fail if any check failed
if: always() && (steps.prettier.outcome == 'failure' || steps.lint.outcome == 'failure' || steps.typecheck.outcome == 'failure' || steps.unit-tests.outcome == 'failure')
if: always() && (steps.lint.outcome == 'failure' || steps.compile.outcome == 'failure' || steps.typecheck.outcome == 'failure' || steps.unit-tests.outcome == 'failure')
run: |
echo "Lint outcome: ${{ steps.lint.outcome }}"
echo "Compile outcome: ${{ steps.compile.outcome }}"
echo "Typecheck outcome: ${{ steps.typecheck.outcome }}"
echo "Unit tests outcome: ${{ steps.unit-tests.outcome }}"
exit 1
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ jobs:
- name: 📦 Install dependencies
run: pnpm install --frozen-lockfile

- name: ⚙️ Compile dependencies
run: corepack pnpm run -r --filter enso-common compile

- name: 📥 Download storybook cache
uses: actions/cache@v4
with:
Expand Down

0 comments on commit 40f2820

Please sign in to comment.