3e076d4dd9
Deploy Worker / deploy (push) Failing after 1s
Shellcheck / Check shell scripts (push) Failing after 1s
CI / Build Packages (amd64 - appimage) (push) Has been skipped
CI / Build Packages (amd64 - deb) (push) Has been skipped
CI / Build Packages (amd64 - rpm) (push) Has been skipped
CI / Build Packages (arm64 - appimage) (push) Has been skipped
CI / Build Packages (arm64 - deb) (push) Has been skipped
CI / Test Flags Parsing (push) Failing after 1s
BATS Tests / BATS unit tests (push) Failing after 1s
CI / Build Packages (arm64 - rpm) (push) Has been skipped
CI / Test Build Artifacts (amd64) (push) Has been skipped
CI / Test Build Artifacts (arm64) (push) Has been skipped
CI / Update APT Repository (push) Has been cancelled
CI / Mirror Official .deb to Release (push) Has been cancelled
CI / Update DNF Repository (push) Has been cancelled
CI / Update AUR Package (push) Has been cancelled
CI / Create Release (push) Has been cancelled
57 lines
1.8 KiB
YAML
57 lines
1.8 KiB
YAML
name: BATS Tests
|
|
run-name: |
|
|
BATS: ${{
|
|
github.event_name == 'pull_request' && format('PR #{0} by @{1} - {2}', github.event.pull_request.number, github.actor, github.event.pull_request.title) ||
|
|
github.event_name == 'push' && github.event.head_commit && format('Push by @{0} - {1}', github.actor, github.event.head_commit.message) ||
|
|
format('{0} triggered by @{1}', github.event_name, github.actor)
|
|
}}
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "tests/**"
|
|
- "scripts/**"
|
|
- ".github/workflows/tests.yml"
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: bats-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
bats:
|
|
name: BATS unit tests
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
|
|
|
- name: Install BATS and Node.js
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y bats nodejs
|
|
|
|
- name: Run BATS test suite
|
|
# Cowork tests load scripts/cowork-fallback/cowork-vm-service.js
|
|
# via `node` — the `nodejs` install above is what they need.
|
|
# The cowork-fallback suites cover the bwrap fallback daemon and
|
|
# its asar patch, which now ship in every package (they were
|
|
# exempt while the code shipped in no artifact).
|
|
run: |
|
|
bats --print-output-on-failure \
|
|
tests/*.bats scripts/cowork-fallback/tests/*.bats
|
|
|
|
- name: Chromium switch-list smoke
|
|
# Fails if the launcher's effective Chromium switch list drifts
|
|
# from tools/chromium-switches.baseline without a deliberate
|
|
# update (every upstream bump / launcher PR is checked).
|
|
run: ./tools/chromium-switch-smoke.sh
|