Skip to content

Commit

Permalink
chore: removed bun and added yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
burhanyilmaz committed May 6, 2024
1 parent c00d9de commit 87050a8
Show file tree
Hide file tree
Showing 4 changed files with 10,358 additions and 10 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v4
- name: πŸ— Setup repo
uses: oven-sh/setup-bun@v1
uses: actions/checkout@v4
- name: πŸ— Setup Node
uses: actions/setup-node@v3
with:
Expand All @@ -20,13 +18,13 @@ jobs:
token: ${{ secrets.EXPO_TOKEN }}
- name: πŸš€ Install Packages
run: |
bun install
yarn install
- name: πŸ§ͺ Run format and lint
run: |
bun format && bun validate
yarn format && yarn validate
- name: πŸ§ͺ Run test
run: |
bun test
yarn test
# - name: Build apk
# run: |
# bun build:android:local
Expand Down
Binary file removed bun.lockb
Binary file not shown.
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,7 @@
"typescript": "*"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
]
"preset": "jest-expo"
},
"private": true
}
Loading

0 comments on commit 87050a8

Please sign in to comment.