WIP: Add server login integration tests #5091
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Unit Tests (Enterprise) | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ develop ] | |
| pull_request: | |
| permissions: {} | |
| jobs: | |
| tests: | |
| name: Tests (Enterprise) | |
| runs-on: macos-26 | |
| timeout-minutes: 45 | |
| # Skip in forks | |
| if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} | |
| concurrency: | |
| # Only allow a single run of this workflow on each branch, automatically cancelling older runs. | |
| group: ${{ format('unit-tests-enterprise{0}', github.ref) }} | |
| cancel-in-progress: true | |
| steps: | |
| - uses: nschloe/action-cached-lfs-checkout@1c185ad576953eab13e35ffe1bffef437d97e9d2 # v1.2.4 | |
| with: | |
| submodules: recursive | |
| token: ${{ secrets.ELEMENT_BOT_TOKEN }} | |
| persist-credentials: false | |
| - name: Setup environment | |
| run: source ci_scripts/ci_common.sh && setup_github_actions_environment | |
| - name: Configure Enterprise | |
| run: swift run -q pipeline configure-element-pro | |
| - name: Run tests | |
| run: swift run -q tools ci unit-tests --skip-previews | |
| - name: Archive artifacts | |
| uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 | |
| # We only care about artefacts if the tests fail | |
| if: failure() | |
| with: | |
| name: Results | |
| path: test_output/UnitTests.zip | |
| retention-days: 1 | |
| if-no-files-found: ignore |