-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (26 loc) · 860 Bytes
/
smoke.yml
File metadata and controls
29 lines (26 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: smoke
# Manual-only. Smoke runs the full installer end-to-end inside Docker and
# takes several minutes per scenario; gate it behind workflow_dispatch so CI
# minutes don't get burned on every push. Run via the Actions tab → "smoke"
# → "Run workflow", or `gh workflow run smoke`.
on:
workflow_dispatch:
jobs:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run typecheck
- run: bun test tests/unit
smoke:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
scenario: [s1-minimal, s2-doppler, s3-infisical-max]
steps:
- uses: actions/checkout@v4
- name: Run smoke scenario ${{ matrix.scenario }}
run: tests/smoke/run-scenario.sh ${{ matrix.scenario }}