Skip to content

Commit 87f28c5

Browse files
authored
Merge pull request #34 from Bandwidth/DX-1621
DX-1621 added pr validation template
2 parents fbe26b6 + 6911723 commit 87f28c5

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/validate.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Validate SDK
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- 'main'
7+
8+
jobs:
9+
deploy:
10+
name: Validate SDK
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v2
15+
- name: Setup Node
16+
uses: actions/setup-node@v1
17+
- name: NPM Install
18+
run: npm install
19+
- name: NPM Build
20+
run: npm run build --if-present
21+
- name: NPM Test
22+
run: npm run test --if-present

0 commit comments

Comments
 (0)