We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f08c75 commit 5e7f602Copy full SHA for 5e7f602
.github/workflows/preview.yml
@@ -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