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 fbe26b6 commit 6911723Copy full SHA for 6911723
.github/workflows/validate.yml
@@ -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