Skip to content

Commit dd6ba56

Browse files
committed
feat(build): add pnpm to build
1 parent a123917 commit dd6ba56

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

.github/workflows/stale.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Mark stale issues and pull requests
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * *'
6+
7+
jobs:
8+
stale:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/stale@v1
13+
with:
14+
repo-token: ${{ secrets.GITHUB_TOKEN }}
15+
stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 14 days'
16+
stale-pr-message: 'This PR is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 14 days'
17+
stale-issue-label: 'no-issue-activity'
18+
stale-pr-label: 'no-pr-activity'
19+
days-before-stale: 60
20+
days-before-close: 14

eas.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"production": {
77
"channel": "production",
88
"distribution": "store",
9+
"pnpm": "8.15.4",
910
"ios": {
1011
"image": "latest"
1112
},
@@ -26,6 +27,7 @@
2627
"staging": {
2728
"channel": "staging",
2829
"distribution": "internal",
30+
"pnpm": "8.15.4",
2931
"ios": {
3032
"image": "latest"
3133
},
@@ -47,6 +49,7 @@
4749
"development": {
4850
"developmentClient": true,
4951
"distribution": "internal",
52+
"pnpm": "8.15.4",
5053
"ios": {
5154
"image": "latest"
5255
},
@@ -75,7 +78,7 @@
7578
"APP_ENV": "development",
7679
"EXPO_NO_DOTENV": "1"
7780
},
78-
"node": "14.18.1",
81+
"pnpm": "8.15.4",
7982
"prebuildCommand": "prebuild --skip-dependency-update react",
8083
"cache": {
8184
"key": "eas-1"

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"test": "jest",
3434
"test:ci": "pnpm run test --coverage",
3535
"test:watch": "pnpm run test --watch",
36-
"eas-build-pre-install": "./scripts/eas-pre-install",
3736
"install-maestro": "curl -Ls 'https://get.maestro.mobile.dev' | bash",
3837
"e2e-test": "maestro test .maestro/ -e APP_ID=com.obytes.development"
3938
},

0 commit comments

Comments
 (0)