Skip to content

Commit 296f1a4

Browse files
committed
Add PDF runtime scaffold validation workflow
1 parent be8cd14 commit 296f1a4

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: PDF Runtime Scaffold
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'Makefile'
7+
- 'README.md'
8+
- 'docs/**'
9+
- 'services/docd/**'
10+
- 'services/pdf-secure/**'
11+
- 'apps/pdf-viewer-demo/**'
12+
- '.github/workflows/pdf-runtime-scaffold.yml'
13+
push:
14+
branches:
15+
- main
16+
paths:
17+
- 'Makefile'
18+
- 'README.md'
19+
- 'docs/**'
20+
- 'services/docd/**'
21+
- 'services/pdf-secure/**'
22+
- 'apps/pdf-viewer-demo/**'
23+
- '.github/workflows/pdf-runtime-scaffold.yml'
24+
25+
permissions:
26+
contents: read
27+
28+
jobs:
29+
validate:
30+
runs-on: ubuntu-latest
31+
steps:
32+
- name: Checkout
33+
uses: actions/checkout@v4
34+
- name: Set up Node
35+
uses: actions/setup-node@v4
36+
with:
37+
node-version: '22'
38+
- name: Validate scaffold
39+
run: make validate
40+
- name: Smoke scaffold
41+
run: make smoke

0 commit comments

Comments
 (0)