We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 305ab8c commit 4325484Copy full SHA for 4325484
.github/workflows/preview.yml
@@ -10,12 +10,18 @@ jobs:
10
steps:
11
- name: Checkout repo
12
uses: actions/checkout@v6
13
+ with:
14
+ fetch-depth: 0
15
16
- name: Set up Node.js
17
uses: actions/setup-node@v3
18
with:
19
node-version: "latest"
20
21
+ - name: Install additional dependencies
22
+ run: npm install axios yargs respec
23
+
24
25
- name: Build site
26
run: bash ./common/script/pr-preview.sh
27
env:
@@ -38,9 +44,6 @@ jobs:
38
44
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
39
45
timeout-minutes: 5
40
46
41
- - name: Install additional dependencies
42
- run: npm install axios yargs
43
-
47
- name: Update PR comment with preview and diff links
48
run: |
49
node common/script/prComment.mjs \
0 commit comments