Skip to content

Commit 96ccf2a

Browse files
chore: upgrade to new RN SDK version (#88)
1 parent e233276 commit 96ccf2a

7 files changed

Lines changed: 1044 additions & 441 deletions

File tree

.github/workflows/build.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ concurrency:
1717
jobs:
1818
build:
1919
runs-on: ubuntu-latest
20+
container:
21+
image: node:18
22+
options: --memory=4g
2023
steps:
2124
- name: Checkout
2225
uses: actions/checkout@v4
@@ -28,9 +31,15 @@ jobs:
2831
cache: 'npm'
2932

3033
- name: Install dependencies
31-
run: npm ci
34+
run: npm install --omit=optional
3235

3336
- name: Build
34-
run: npm run build
37+
run: |
38+
ulimit -S -c unlimited
39+
npm run build
3540
env:
3641
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID }}
42+
NODE_OPTIONS: "--max_old_space_size=4096 --no-warnings"
43+
NEXT_TELEMETRY_DISABLED: "1"
44+
NPM_CONFIG_PRODUCTION: "false"
45+
NODE_ENV: "production"

0 commit comments

Comments
 (0)