Skip to content

Commit 0939a9c

Browse files
committed
chore: Added pr-test workflow
1 parent 84f6609 commit 0939a9c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Diff for: .github/workflows/pr-test.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Test pr integration
2+
on:
3+
pull_request:
4+
types: [ synchronize, opened ]
5+
jobs:
6+
7+
build:
8+
name: Test PR
9+
runs-on: ubuntu-20.04
10+
steps:
11+
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-node@v3
14+
with:
15+
node-version: '16.17.0'
16+
- run: npm ci
17+
- run: npm run test
18+
- run: npm run build
19+
- run: npm run build:docs
20+

0 commit comments

Comments
 (0)