Skip to content

Commit 4c7106d

Browse files
committed
Merge branch 'release/4.1.3'
2 parents d71530b + f16965d commit 4c7106d

File tree

300 files changed

+10714
-8860
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

300 files changed

+10714
-8860
lines changed

.aidigestignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
expo-env.d.ts
2+
node_modules/
3+
.env
4+
android/
5+
ios/
6+
.expo
7+
src/storybook
8+
src/svg-icons
9+
src/assets

.circleci/config.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,34 @@ orbs:
55
jobs:
66
build-and-test:
77
docker:
8-
- image: cimg/node:20.6.0
8+
- image: cimg/node:20.9.0
99
steps:
1010
- checkout
11+
- run:
12+
name: Setup Working Directory
13+
command: |
14+
ls -la
15+
pwd
1116
- restore_cache:
1217
name: Restore Yarn Package Cache
1318
keys:
14-
- yarn-packages-{{ checksum "yarn.lock" }}
19+
- yarn-packages-v1-{{ checksum "package.json" }}
20+
- yarn-packages-v1-
1521
- run:
1622
name: Install Dependencies
17-
command: yarn install --immutable
23+
command: yarn install
1824
- save_cache:
1925
name: Save Yarn Package Cache
20-
key: yarn-packages-{{ checksum "yarn.lock" }}
26+
key: yarn-packages-v1-{{ checksum "package.json" }}
2127
paths:
2228
- .yarn/cache
2329
- .yarn/unplugged
30+
- node_modules
2431
- run:
2532
command: yarn run test
2633
name: Run YARN tests
34+
2735
workflows:
2836
test_my_app:
2937
jobs:
30-
- build-and-test
38+
- build-and-test

0 commit comments

Comments
 (0)