Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ on:
branches:
- main
pull_request:
schedule: # we want to verify the tests still run even when element updates something
- cron: '0 5 * * 1-5'

jobs:
build-js:
name: Build Javascript
runs-on: ubuntu-latest
if: ${{ ! github.event_name == 'schedule' }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -44,6 +47,7 @@ jobs:
build-py:
name: Build Python
runs-on: ubuntu-latest
if: ${{ ! github.event_name == 'schedule' }}
timeout-minutes: 15
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion e2e/src/deploy/elementWeb/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let container: StartedTestContainer | undefined;
export async function startElementWeb({
homeserverUrl,
widgetServerUrl,
version = 'master',
version = 'staging',
}: {
homeserverUrl: string;
widgetServerUrl: string;
Expand Down
Loading