We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eedf9eb commit e2a11b5Copy full SHA for e2a11b5
1 file changed
.github/workflows/ci.yml
@@ -2,7 +2,7 @@ name: CI
2
on:
3
push:
4
branches:
5
- - "*"
+ - '*'
6
pull_request:
7
8
- main
@@ -47,6 +47,20 @@ jobs:
47
- name: Build package
48
run: yarn prepare
49
50
+ runs-on: ubuntu-latest
51
+
52
+ - name: Checkout
53
+ uses: actions/checkout@v4
54
55
+ - name: Setup
56
+ uses: ./.github/actions/setup
57
58
+ - name: Build package
59
+ run: yarn prepare
60
61
+ - name: Validate package contents
62
+ run: yarn pack --dry-run
63
64
build-android:
65
runs-on: ubuntu-latest
66
env:
@@ -99,7 +113,7 @@ jobs:
99
113
100
114
- name: Build example for Android
101
115
102
- JAVA_OPTS: "-XX:MaxHeapSize=6g"
116
+ JAVA_OPTS: '-XX:MaxHeapSize=6g'
103
117
run: |
104
118
yarn turbo run build:android --cache-dir="${{ env.TURBO_CACHE_DIR }}"
105
119
0 commit comments