-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (28 loc) · 808 Bytes
/
Copy pathproofloop.yml
File metadata and controls
30 lines (28 loc) · 808 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
30
name: Proximitty Proof Loop
on:
workflow_dispatch:
jobs:
proximitty-underwriting-pr0:
name: Proximitty Underwriting Proof Loop
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npx playwright install --with-deps chromium
- name: Run Proximitty proof-loop
run: npm run proofloop:proximitty
env:
CI: "true"
VITE_CONVEX_URL: ${{ secrets.VITE_CONVEX_URL }}
- name: Upload proof artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: proximitty-underwriting-pr0
path: .proofloop/runs/latest/
retention-days: 14