Skip to content

Commit

Permalink
refactor!: add tauri selenium package
Browse files Browse the repository at this point in the history
Revert "deps(tauri): bind tauri deps to v2 dev branch"
This reverts commit 8ff418c.
  • Loading branch information
bukowa committed Jul 7, 2024
1 parent 8ff418c commit 49ca25a
Show file tree
Hide file tree
Showing 78 changed files with 4,894 additions and 1,228 deletions.
24 changes: 8 additions & 16 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env:
JUSTFILE_TRACE: 1 # justfile set -x
E2E_LOG_LEVEL: debug # tests-e2e-js
E2E_NODE_TIMEOUT: 90000 # xvfb is slow to start
JUST_UNSTABLE: 1

jobs:

Expand All @@ -34,8 +35,6 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
.build/
setup.exe
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-${{ hashFiles('**/package-lock.json') }}

- name: Setup Just
Expand All @@ -59,12 +58,6 @@ jobs:
toolchain: stable
override: true

- name: Install Prerequisites
if: ${{ inputs.os == 'ubuntu-latest' }}
shell: "bash"
run: |
. <(just prerequisites)
- name: Install Prerequisites
if: ${{ inputs.os == 'windows-latest' }}
shell: "powershell"
Expand All @@ -83,17 +76,16 @@ jobs:
- name: Linux - Run UI E2E tests
if: ${{ inputs.os == 'ubuntu-latest' }}
shell: "bash"
run: xvfb-run -a just test-e2e
run: |
just test
- name: Windows - Run UI E2E tests
if: ${{ inputs.os == 'windows-latest' }}
shell: "bash"
run: |
just browser-version-pending-update
just browser-version
just test-e2e
just test
- name: MacOS - Run UI E2E tests
if: ${{ inputs.os == 'macos-latest' }}
shell: "bash"
run: just test-e2e
# - name: MacOS - Run UI E2E tests
# if: ${{ inputs.os == 'macos-latest' }}
# shell: "bash"
# run: just test
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
target
node_modules
dist
.build
.build
.tsimp
*.tsbuildinfo
.deps.once
Loading

0 comments on commit 49ca25a

Please sign in to comment.