Skip to content

Commit e83b818

Browse files
committed
CI support for React Native SDK
1 parent c3f78a0 commit e83b818

File tree

2 files changed

+9674
-0
lines changed

2 files changed

+9674
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
pull_request:
3+
branches: [ master ]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Yarn install
12+
uses: actions/setup-node@v2
13+
with:
14+
node-version: ${{ matrix.node-version }}
15+
- run: yarn install --cwd example --frozen-lockfile
16+
- run: yarn install --frozen-lockfile
17+
- run: yarn typescript
18+
- run: yarn lint

0 commit comments

Comments
 (0)