Skip to content

Commit 5e7f602

Browse files
committed
preview
1 parent 6f08c75 commit 5e7f602

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/preview.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Preview build
2+
on:
3+
- pull_request
4+
jobs:
5+
preview-build:
6+
name: Preview build
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v4
11+
with:
12+
ref: ${{ github.event.pull_request.head.sha }}
13+
fetch-depth: 0 # enable git diff and building many branches
14+
15+
- name: Build the docs
16+
run: |
17+
chmod +x scripts/prow-smoke-test.sh
18+
scripts/prow-smoke-test.sh -v

0 commit comments

Comments
 (0)