* Add zizmor checks on CI. * Fix zizmor credentials warnings * Add persist-credentials: false to action-cached-lfs-checkout too. * Add empty permissions by default. * Ignore pull_request_target failure and add a warning.
52 lines
1.5 KiB
YAML
52 lines
1.5 KiB
YAML
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@f46300cd8952454b9f0a21a3d133d4bd5684cfc2 #v1.2.3
|
|
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
|