Skip to content

chore: upgrade to new RN SDK version #71

chore: upgrade to new RN SDK version

chore: upgrade to new RN SDK version #71

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
paths:
- '**/*.{js,jsx,ts,tsx}'
- 'package*.json'
- '.github/workflows/build.yml'
- 'nixpacks.toml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
container:
image: node:22
options: --memory=4g
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
env:
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID }}
NODE_OPTIONS: "--max_old_space_size=4096 --no-warnings --expose-gc"
NEXT_TELEMETRY_DISABLED: "1"
NPM_CONFIG_PRODUCTION: "false"
NODE_ENV: "production"
CI: "true"
NEXT_TURBO: "1"