4545 - uses : actions/checkout@v4
4646 - uses : actions/setup-node@v4
4747 with :
48- node-version : 20
48+ node-version : 22
4949 - uses : pnpm/action-setup@v4
5050 with :
5151 version : latest
7070
7171 - name : Build iOS
7272 if : steps.check.outputs.skip != 'true'
73+ env :
74+ NODE_OPTIONS : --experimental-strip-types --disable-warning=ExperimentalWarning
7375 run : |
7476 PROFILE="${{ inputs.profile || 'preview' }}"
7577 if [[ "$GITHUB_REF" == refs/tags/v* ]]; then
9597 - uses : actions/checkout@v4
9698 - uses : actions/setup-node@v4
9799 with :
98- node-version : 20
100+ node-version : 22
99101 - uses : pnpm/action-setup@v4
100102 with :
101103 version : latest
@@ -120,6 +122,8 @@ jobs:
120122
121123 - name : Build Android
122124 if : steps.check.outputs.skip != 'true'
125+ env :
126+ NODE_OPTIONS : --experimental-strip-types --disable-warning=ExperimentalWarning
123127 run : |
124128 PROFILE="${{ inputs.profile || 'preview' }}"
125129 if [[ "$GITHUB_REF" == refs/tags/v* ]]; then
@@ -145,7 +149,7 @@ jobs:
145149 - uses : actions/checkout@v4
146150 - uses : actions/setup-node@v4
147151 with :
148- node-version : 20
152+ node-version : 22
149153 - uses : pnpm/action-setup@v4
150154 with :
151155 version : latest
@@ -169,6 +173,8 @@ jobs:
169173
170174 - name : Push OTA Update
171175 if : steps.check.outputs.skip != 'true'
176+ env :
177+ NODE_OPTIONS : --experimental-strip-types --disable-warning=ExperimentalWarning
172178 run : |
173179 VERSION=$(node -p "require('../package.json').version")
174180 eas update --branch preview --message "v${VERSION}" --non-interactive
0 commit comments