Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: improve GHA code re-use #4612

Merged
merged 17 commits into from
Aug 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: check for tauri-driver existance before installing
  • Loading branch information
ndom91 committed Aug 6, 2024
commit 1c8aa6f9164fc1d0325d12c65bbf98ad1ce9051c
5 changes: 4 additions & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ jobs:
- name: Build Tauri
run: pnpm build:test
- name: Install tauri-driver
run: cargo install tauri-driver@0.1.3
run: |
if [ ! -e "~/.cargo/bin/tauri-driver" ]; then
cargo install tauri-driver@0.1.3
fi

# Run it through `xvfb-run` to have a fake display server which allows our
# application to run headless without any changes to the code
Expand Down
Loading