mirror of
https://github.com/logos-co/logos-package-manager-ui.git
synced 2026-08-27 10:21:10 +00:00
28 lines
680 B
YAML
28 lines
680 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
|
|
jobs:
|
|
integration-test-linux:
|
|
name: Agentic UI tests (ubuntu-latest)
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: cachix/install-nix-action@v27
|
|
with:
|
|
extra_nix_config: |
|
|
experimental-features = nix-command flakes
|
|
accept-flake-config = true
|
|
- run: nix build .#integration-test -L
|
|
|
|
integration-test-macos:
|
|
name: Agentic UI tests (macos-latest)
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
|
- run: nix build .#integration-test -L
|