Skip to content

Commit

Permalink
Fix js build (#9735)
Browse files Browse the repository at this point in the history
* skip fe build in js tests

* more fix

* fix again
  • Loading branch information
pngwn authored Oct 16, 2024
1 parent 199160e commit f118587
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/actions/install-frontend-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ runs:
- name: Build Css
shell: bash
run: pnpm css
- name: Create packages
shell: bash
run: pnpm package
- name: Build frontend
if: inputs.skip_build == 'false'
# && steps.frontend-cache.outputs.cache-hit != 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: build the wasm module
run: pnpm --filter @gradio/wasm build
- name: format check
run: pnpm package && pnpm format:check
run: pnpm format:check
- name: lint
run: pnpm lint
- name: typecheck
Expand Down

0 comments on commit f118587

Please sign in to comment.