Skip to content

Commit 26befbd

Browse files
committed
chore: run unit test on PR
1 parent 418a042 commit 26befbd

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/unit-test.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: App SDK CI - Unit Testing
5+
6+
on:
7+
push:
8+
branches: [master]
9+
10+
pull_request:
11+
types: [opened, synchronize, reopened]
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
17+
strategy:
18+
matrix:
19+
node-version: [14.x]
20+
21+
steps:
22+
- name: Checkout repository
23+
uses: actions/checkout@v2
24+
with:
25+
node-version: '14.x'
26+
27+
- name: Use Node.js
28+
uses: actions/setup-node@v2
29+
with:
30+
node-version: '14.x'
31+
32+
- name: Install deps
33+
run: npm ci
34+
35+
- name: Run unit test
36+
run: npm run test

0 commit comments

Comments
 (0)