-
Notifications
You must be signed in to change notification settings - Fork 409
57 lines (50 loc) · 1.52 KB
/
bun-superapp-smoke.yml
File metadata and controls
57 lines (50 loc) · 1.52 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Bun Super-App Smoke
on:
workflow_dispatch:
pull_request:
paths:
- 'scripts/module-sdk-contracts/**'
- 'scripts/boundary-guards/**'
- 'scripts/release-gates/**'
- 'docs/super-app-rfc-adr/contracts/**'
- 'docs/super-app-rfc-adr/evidence/module-certification/**'
- 'docs/super-app-rfc-adr/evidence/release-candidate/**'
- 'package.json'
- '.github/workflows/bun-superapp-smoke.yml'
push:
branches:
- main
- ultramodern
- v4
paths:
- 'scripts/module-sdk-contracts/**'
- 'scripts/boundary-guards/**'
- 'scripts/release-gates/**'
- 'docs/super-app-rfc-adr/contracts/**'
- 'docs/super-app-rfc-adr/evidence/module-certification/**'
- 'docs/super-app-rfc-adr/evidence/release-candidate/**'
- 'package.json'
- '.github/workflows/bun-superapp-smoke.yml'
jobs:
bun-superapp-smoke:
runs-on: ${{ fromJSON(vars.SELF_LINUX_LABELS || '"ubuntu-latest"') }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.9
- name: Install Pnpm
run: corepack enable
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --ignore-scripts --frozen-lockfile
- name: Bun Smoke Validation
run: pnpm run validate:bun-smoke