Skip to content

Commit

Permalink
fix: merge
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirvolek committed Dec 16, 2024
2 parents ceecadc + 560819f commit 61d4ae0
Show file tree
Hide file tree
Showing 501 changed files with 6,421 additions and 4,857 deletions.
220 changes: 220 additions & 0 deletions .easignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,220 @@
.github
docker
docs

packages/ipc-proxy/
packages/suite/
packages/suite-analytics/
packages/suite-build/
packages/suite-data/
packages/suite-desktop/
packages/suite-desktop-api/
packages/suite-desktop-core/
packages/suite-desktop-ui/
packages/suite-storage/
packages/suite-web/

### content of all .gitignore files is not applied if .easignore is present

build
build-electron
build-renderer
.build-storybook
\*.cpuprofile

# Dependency directory

node_modules

# OSX

.DS_Store

# Editors

.idea
_.sublime-project
_.sublime-workspace
.vscode/\*_/_
!.vscode/\*.code-snippets

# Logs

logs
\*.log
.yarnclean

.attic
.env\*
!.env.dev
nx-cloud.env

# cache

_.code-workspace
**docker-snapshots**
**pycache**/
.cache/
.eslintcache
.stylelintcache
_.tsbuildinfo
.nx

# Vagrant

.vagrant

# test outputs

screenshots
test-results

# build outputs

lib
libDev
dist
public
coverage
tmp

## React Native section

# Xcode

build/
_.pbxuser
!default.pbxuser
_.mode1v3
!default.mode1v3
_.mode2v3
!default.mode2v3
_.perspectivev3
!default.perspectivev3
xcuserdata
_.xccheckout
_.moved-aside
DerivedData
_.hmap
_.ipa
_.dSYM.zip
_.xcuserstate

# Android/IntelliJ

build/
.idea
.gradle
local.properties
_.iml
_.hprof
.cxx/
\*.keystore
!debug.keystore

# scan temporary files

\*\*/android/fastlane/test_output

!**/suite-native/app/.env.debug
!**/suite-native/app/.env.develop
!**/suite-native/app/.env.preview
!**/suite-native/app/.env.production
!\*\*/suite-native/app/.env.staging

# ios

**/ios/\*.xcarchive
**/ios/builds/\*
\*\*/ios/.xcode.env.local

# Ruby / CocoaPods

**/ios/Pods/
**/vendor/bundle/

# Temporary files created by Metro to check the health of the file watcher

.metro-health-check\*

# android

\*_/android/builds/_

# fastlane supply (google service account - upload key)

\*\*/android/upload-key.json

# Bundle artifact

\*.jsbundle

# Yarn 3

.yarn/_
.yarn/cache
!.yarn/patches
!.yarn/plugins/_
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# @trezor/suite-data

packages/suite-data/files/browser-detection
packages/suite-data/files/guide
packages/suite-data/files/translations/master.json

# @trezor/connect-explorer

**/build-webextension/**

# cypress download folder

packages/suite-web/e2e/downloads

### suite-native/app/.gitignore

# Expo

.expo/
web-build/

# Native

suite-native/app/**/_.orig._
suite-native/app/**/_.jks
suite-native/app/\*\*/_.p8
suite-native/app/**/\*.p12
suite-native/app/**/_.key
suite-native/app/\*\*/_.mobileprovision

# These are generated when running `expo prebuild`

suite-native/app/ios
suite-native/app/android

# Metro

.metro-health-check\*

# debug

npm-debug._
yarn-debug._
yarn-error.\*

# macOS

.DS_Store
\*.pem

# local env files

.env
!suite-native/app/.env._
.env._.local

# typescript

\*.tsbuildinfo
5 changes: 5 additions & 0 deletions .github/workflows/release-connect-intermediary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
# Number of commits to fetch. 0 indicates all history for all branches and tags.
fetch-depth: 0

- name: Setup Git config
run: |
git config --global user.name "trezor-ci"
git config --global user.email "${{ secrets.TREZOR_BOT_EMAIL }}"
- name: Get current branch name
id: get-current-branch
run: |
Expand Down
38 changes: 38 additions & 0 deletions .github/workflows/suite-native-monthly-version-bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: "[Bot] suite-native monthly version bump"

on:
schedule:
# Runs on the first day of every month at 00:00 UTC
- cron: "0 0 1 * *"

jobs:
bump_native_version:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4

- name: Set Version Variable
run: |
YEAR=$(date +%y)
MONTH=$(date +%-m)
echo NEW_VERSION="$YEAR.$MONTH.1" >> $GITHUB_ENV
- name: Update Version of package.json
run: jq --indent 4 --arg version "$NEW_VERSION" '.suiteNativeVersion = $version' suite-native/app/package.json > temp.json && mv temp.json suite-native/app/package.json

- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
title: "chore(suite-native): bump version to ${{ env.NEW_VERSION }}"
body: |
Automated version bump to follow YY.MM.MINOR convention
- Updates version in package.json to ${{ env.NEW_VERSION }}
branch: "chore/native/bump-version-to-${{ env.NEW_VERSION }}"
base: "develop"
delete-branch: true
labels: mobile ci
2 changes: 1 addition & 1 deletion .github/workflows/template-connect-test-params.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- if: ${{ inputs.testEnv == 'node' }}
run: sed -i "/\"node\"/d" package.json
- if: ${{ inputs.testEnv == 'node' }}
run: yarn install
run: yarn workspaces focus @trezor/connect

- if: ${{ inputs.cache_tx == 'true' }}
run: echo "ADDITIONAL_ARGS=-c" >> "$GITHUB_ENV"
Expand Down
Loading

0 comments on commit 61d4ae0

Please sign in to comment.