@@ -263,193 +263,193 @@ jobs:
263263 !.next/
264264
265265 # ci-pr-ios-web:
266- name : 🔄 🍏 🌐 CI PR Run iOS Web Tests
267- runs-on : ubuntu-latest
268- if : |
269- github.event_name == 'pull_request' &&
270- github.actor != 'dependabot[bot]'
271-
272- strategy :
273- matrix :
274- node-version : [20.x]
275-
276- steps :
277- - name : ⬇️ Checkout Repository
278- if : ${{ github.event_name != 'pull_request_target' }}
279- uses : actions/checkout@v3
280-
281- - name : ⬇️ Checkout PR Repository
282- if : ${{ github.event_name == 'pull_request_target' }}
283- uses : actions/checkout@v3
284- with :
285- ref : ${{ github.event.pull_request.head.sha }}
286-
287- - name : 📦 Setup pnpm
288- uses : pnpm/action-setup@v4
289- with :
290- version : 8
291-
292- - name : 🟢 Setup Node.js ${{ matrix.node-version }}
293- uses : actions/setup-node@v3
294- with :
295- node-version : ${{ matrix.node-version }}
296- cache : pnpm
297-
298- - name : 🧩 Install Dependencies
299- run : pnpm pnpm.install.workaround
300-
301- - name : 🏗️ Build
302- working-directory : ./
303- run : pnpm build
304-
305- - name : 🧪 Run linting and unit tests
306- working-directory : ./
307- run : pnpm test
308-
309- - name : 🍏 🌐 Run iOS Web e2e tests
310- working-directory : ./
311- env :
312- LAMBDATEST_USERNAME : ${{ secrets.LAMBDATEST_USERNAME }}
313- LAMBDATEST_ACCESS_KEY : ${{ secrets.LAMBDATEST_ACCESS_KEY }}
314- BUILD_PREFIX : true
315- run : pnpm test.lambdatest.sims.web --maxConcurrency=2
316-
317- - name : 📤 Upload artifacts
318- uses : actions/upload-artifact@v4
319- if : failure()
320- with :
321- name : ci-pr-ios-web-logs
322- path : |
323- logs/*.log
324- .tmp/
325- !.tmp/checkActual/
326- !.tmp/saveActual/
327- !.tmp/testDiff/
328- !.next/
266+ # name: 🔄 🍏 🌐 CI PR Run iOS Web Tests
267+ # runs-on: ubuntu-latest
268+ # if: |
269+ # github.event_name == 'pull_request' &&
270+ # github.actor != 'dependabot[bot]'
271+
272+ # strategy:
273+ # matrix:
274+ # node-version: [20.x]
275+
276+ # steps:
277+ # - name: ⬇️ Checkout Repository
278+ # if: ${{ github.event_name != 'pull_request_target' }}
279+ # uses: actions/checkout@v3
280+
281+ # - name: ⬇️ Checkout PR Repository
282+ # if: ${{ github.event_name == 'pull_request_target' }}
283+ # uses: actions/checkout@v3
284+ # with:
285+ # ref: ${{ github.event.pull_request.head.sha }}
286+
287+ # - name: 📦 Setup pnpm
288+ # uses: pnpm/action-setup@v4
289+ # with:
290+ # version: 8
291+
292+ # - name: 🟢 Setup Node.js ${{ matrix.node-version }}
293+ # uses: actions/setup-node@v3
294+ # with:
295+ # node-version: ${{ matrix.node-version }}
296+ # cache: pnpm
297+
298+ # - name: 🧩 Install Dependencies
299+ # run: pnpm pnpm.install.workaround
300+
301+ # - name: 🏗️ Build
302+ # working-directory: ./
303+ # run: pnpm build
304+
305+ # - name: 🧪 Run linting and unit tests
306+ # working-directory: ./
307+ # run: pnpm test
308+
309+ # - name: 🍏 🌐 Run iOS Web e2e tests
310+ # working-directory: ./
311+ # env:
312+ # LAMBDATEST_USERNAME: ${{ secrets.LAMBDATEST_USERNAME }}
313+ # LAMBDATEST_ACCESS_KEY: ${{ secrets.LAMBDATEST_ACCESS_KEY }}
314+ # BUILD_PREFIX: true
315+ # run: pnpm test.lambdatest.sims.web --maxConcurrency=2
316+
317+ # - name: 📤 Upload artifacts
318+ # uses: actions/upload-artifact@v4
319+ # if: failure()
320+ # with:
321+ # name: ci-pr-ios-web-logs
322+ # path: |
323+ # logs/*.log
324+ # .tmp/
325+ # !.tmp/checkActual/
326+ # !.tmp/saveActual/
327+ # !.tmp/testDiff/
328+ # !.next/
329329
330330 # ci-pr-app:
331- name : 🔄 📱 CI PR Run Mobile App Tests
332- runs-on : ubuntu-latest
333- if : |
334- github.event_name == 'pull_request' &&
335- github.actor != 'dependabot[bot]'
336-
337- strategy :
338- matrix :
339- node-version : [20.x]
340-
341- steps :
342- - name : ⬇️ Checkout Repository
343- if : ${{ github.event_name != 'pull_request_target' }}
344- uses : actions/checkout@v3
345-
346- - name : ⬇️ Checkout PR Repository
347- if : ${{ github.event_name == 'pull_request_target' }}
348- uses : actions/checkout@v3
349- with :
350- ref : ${{ github.event.pull_request.head.sha }}
351-
352- - name : 📦 Setup pnpm
353- uses : pnpm/action-setup@v4
354- with :
355- version : 8
356-
357- - name : 🟢 Setup Node.js ${{ matrix.node-version }}
358- uses : actions/setup-node@v3
359- with :
360- node-version : ${{ matrix.node-version }}
361- cache : pnpm
362-
363- - name : 🧩 Install Dependencies
364- run : pnpm pnpm.install.workaround
365-
366- - name : 🏗️ Build
367- working-directory : ./
368- run : pnpm build
369-
370- - name : 🧪 Run linting and unit tests
371- working-directory : ./
372- run : pnpm test
373-
374- - name : 😶🌫️ 📱 Run App e2e tests
375- working-directory : ./
376- env :
377- LAMBDATEST_USERNAME : ${{ secrets.LAMBDATEST_USERNAME }}
378- LAMBDATEST_ACCESS_KEY : ${{ secrets.LAMBDATEST_ACCESS_KEY }}
379- BUILD_PREFIX : true
380- run : pnpm test.lambdatest.app --maxConcurrency=2
381-
382- - name : 📤 Upload artifacts
383- uses : actions/upload-artifact@v4
384- if : failure()
385- with :
386- name : ci-pr-mobile-app-logs
387- path : |
388- logs/*.log
389- .tmp/
390- !.tmp/checkActual/
391- !.tmp/saveActual/
392- !.tmp/testDiff/
393- !.next/
331+ # name: 🔄 📱 CI PR Run Mobile App Tests
332+ # runs-on: ubuntu-latest
333+ # if: |
334+ # github.event_name == 'pull_request' &&
335+ # github.actor != 'dependabot[bot]'
336+
337+ # strategy:
338+ # matrix:
339+ # node-version: [20.x]
340+
341+ # steps:
342+ # - name: ⬇️ Checkout Repository
343+ # if: ${{ github.event_name != 'pull_request_target' }}
344+ # uses: actions/checkout@v3
345+
346+ # - name: ⬇️ Checkout PR Repository
347+ # if: ${{ github.event_name == 'pull_request_target' }}
348+ # uses: actions/checkout@v3
349+ # with:
350+ # ref: ${{ github.event.pull_request.head.sha }}
351+
352+ # - name: 📦 Setup pnpm
353+ # uses: pnpm/action-setup@v4
354+ # with:
355+ # version: 8
356+
357+ # - name: 🟢 Setup Node.js ${{ matrix.node-version }}
358+ # uses: actions/setup-node@v3
359+ # with:
360+ # node-version: ${{ matrix.node-version }}
361+ # cache: pnpm
362+
363+ # - name: 🧩 Install Dependencies
364+ # run: pnpm pnpm.install.workaround
365+
366+ # - name: 🏗️ Build
367+ # working-directory: ./
368+ # run: pnpm build
369+
370+ # - name: 🧪 Run linting and unit tests
371+ # working-directory: ./
372+ # run: pnpm test
373+
374+ # - name: 😶🌫️ 📱 Run App e2e tests
375+ # working-directory: ./
376+ # env:
377+ # LAMBDATEST_USERNAME: ${{ secrets.LAMBDATEST_USERNAME }}
378+ # LAMBDATEST_ACCESS_KEY: ${{ secrets.LAMBDATEST_ACCESS_KEY }}
379+ # BUILD_PREFIX: true
380+ # run: pnpm test.lambdatest.app --maxConcurrency=2
381+
382+ # - name: 📤 Upload artifacts
383+ # uses: actions/upload-artifact@v4
384+ # if: failure()
385+ # with:
386+ # name: ci-pr-mobile-app-logs
387+ # path: |
388+ # logs/*.log
389+ # .tmp/
390+ # !.tmp/checkActual/
391+ # !.tmp/saveActual/
392+ # !.tmp/testDiff/
393+ # !.next/
394394
395395 # ci-pr-ocr:
396- name : 🔄 📱 CI PR Run OCR Tests
397- runs-on : ubuntu-latest
398- if : |
399- github.event_name == 'pull_request' &&
400- github.actor != 'dependabot[bot]'
401-
402- strategy :
403- matrix :
404- node-version : [20.x]
405-
406- steps :
407- - name : ⬇️ Checkout Repository
408- if : ${{ github.event_name != 'pull_request_target' }}
409- uses : actions/checkout@v3
410-
411- - name : ⬇️ Checkout PR Repository
412- if : ${{ github.event_name == 'pull_request_target' }}
413- uses : actions/checkout@v3
414- with :
415- ref : ${{ github.event.pull_request.head.sha }}
416-
417- - name : 📦 Setup pnpm
418- uses : pnpm/action-setup@v4
419- with :
420- version : 8
421-
422- - name : 🟢 Setup Node.js ${{ matrix.node-version }}
423- uses : actions/setup-node@v3
424- with :
425- node-version : ${{ matrix.node-version }}
426- cache : pnpm
427-
428- - name : 🧩 Install Dependencies
429- run : pnpm pnpm.install.workaround
430-
431- - name : 🏗️ Build
432- working-directory : ./
433- run : pnpm build
434-
435- - name : 🧪 Run linting and unit tests
436- working-directory : ./
437- run : pnpm test
438-
439- - name : 😶🌫️ 🔎 Run OCR e2e tests
440- working-directory : ./
441- env :
442- LAMBDATEST_USERNAME : ${{ secrets.LAMBDATEST_USERNAME }}
443- LAMBDATEST_ACCESS_KEY : ${{ secrets.LAMBDATEST_ACCESS_KEY }}
444- BUILD_PREFIX : true
445- run : pnpm test.ocr.lambdatest.desktop --maxConcurrency=1
446-
447- - name : 📤 Upload artifacts
448- uses : actions/upload-artifact@v4
449- if : failure()
450- with :
451- name : ci-pr-ocr-logs
452- path : |
453- logs/*.log
454- .tmp/
455- !.next/
396+ # name: 🔄 📱 CI PR Run OCR Tests
397+ # runs-on: ubuntu-latest
398+ # if: |
399+ # github.event_name == 'pull_request' &&
400+ # github.actor != 'dependabot[bot]'
401+
402+ # strategy:
403+ # matrix:
404+ # node-version: [20.x]
405+
406+ # steps:
407+ # - name: ⬇️ Checkout Repository
408+ # if: ${{ github.event_name != 'pull_request_target' }}
409+ # uses: actions/checkout@v3
410+
411+ # - name: ⬇️ Checkout PR Repository
412+ # if: ${{ github.event_name == 'pull_request_target' }}
413+ # uses: actions/checkout@v3
414+ # with:
415+ # ref: ${{ github.event.pull_request.head.sha }}
416+
417+ # - name: 📦 Setup pnpm
418+ # uses: pnpm/action-setup@v4
419+ # with:
420+ # version: 8
421+
422+ # - name: 🟢 Setup Node.js ${{ matrix.node-version }}
423+ # uses: actions/setup-node@v3
424+ # with:
425+ # node-version: ${{ matrix.node-version }}
426+ # cache: pnpm
427+
428+ # - name: 🧩 Install Dependencies
429+ # run: pnpm pnpm.install.workaround
430+
431+ # - name: 🏗️ Build
432+ # working-directory: ./
433+ # run: pnpm build
434+
435+ # - name: 🧪 Run linting and unit tests
436+ # working-directory: ./
437+ # run: pnpm test
438+
439+ # - name: 😶🌫️ 🔎 Run OCR e2e tests
440+ # working-directory: ./
441+ # env:
442+ # LAMBDATEST_USERNAME: ${{ secrets.LAMBDATEST_USERNAME }}
443+ # LAMBDATEST_ACCESS_KEY: ${{ secrets.LAMBDATEST_ACCESS_KEY }}
444+ # BUILD_PREFIX: true
445+ # run: pnpm test.ocr.lambdatest.desktop --maxConcurrency=1
446+
447+ # - name: 📤 Upload artifacts
448+ # uses: actions/upload-artifact@v4
449+ # if: failure()
450+ # with:
451+ # name: ci-pr-ocr-logs
452+ # path: |
453+ # logs/*.log
454+ # .tmp/
455+ # !.next/
0 commit comments