Skip to content

Commit 3c851f5

Browse files
committed
update build step and add for ci
1 parent 9dc0393 commit 3c851f5

File tree

5 files changed

+307
-867
lines changed

5 files changed

+307
-867
lines changed

.github/workflows/pull-request.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
- name: Install dependencies
2121
run: yarn install --frozen-lockfile
2222

23+
- name: Build Plugin
24+
run: yarn run build
25+
2326
- name: Lint
2427
run: yarn run lint
2528

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
- name: Install dependencies
2929
run: yarn install --frozen-lockfile
3030

31+
- name: Build Plugin
32+
run: yarn run build
33+
3134
- name: Unit Tests
3235
run: yarn test
3336

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
],
2323
"license": "MIT",
2424
"scripts": {
25+
"build": "yarn workspace react-native-app-auth build",
2526
"changeset": "changeset",
2627
"lint": "yarn workspace react-native-app-auth lint",
2728
"test": "yarn workspace react-native-app-auth test",

packages/react-native-app-auth/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
"scripts": {
88
"test": "jest",
99
"lint": "eslint .",
10-
"build": "expo-module-scripts build plugin",
11-
"clean": "expo-module-scripts clean plugin",
12-
"lint:plugin": "expo-module-scripts lint plugin",
13-
"test:plugin": "expo-module-scripts test plugin"
10+
"build": "expo-module build plugin",
11+
"clean": "expo-module clean plugin",
12+
"lint:plugin": "expo-module lint plugin",
13+
"test:plugin": "expo-module test plugin"
1414
},
1515
"files": [
1616
"android",

0 commit comments

Comments
 (0)