diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 15f7bfbb7f..a6e627e34f 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -36,5 +36,5 @@ Cargo.* @durch @futurechimp @jstuczyn @neacsu # Explorer and wallet should probably get looked by the product team /explorer/ @nymtech/product -/tauri-wallet/ @nymtech/product +/nym-wallet/ @nymtech/product /wallet-web/ @nymtech/product diff --git a/.github/workflows/nym_wallet.yml b/.github/workflows/nym_wallet.yml index 62d2db23f4..e3883641d4 100644 --- a/.github/workflows/nym_wallet.yml +++ b/.github/workflows/nym_wallet.yml @@ -1,18 +1,18 @@ name: Webdriverio tests for nym wallet -on: - push: +on: + push: paths: - - 'tauri-wallet/**' - + - "nym-wallet/**" + defaults: run: - working-directory: tauri-wallet + working-directory: nym-wallet jobs: test: name: wallet tests - runs-on: ubuntu-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -30,8 +30,8 @@ jobs: - name: Install minimal stable uses: actions-rs/toolchain@v1 with: - profile: minimal - toolchain: stable + profile: minimal + toolchain: stable - name: Node v16 uses: actions/setup-node@v1 @@ -39,32 +39,32 @@ jobs: node-version: 16.x - name: Install yarn for building application - run: yarn install + run: yarn install - name: Build application run: yarn run webpack:build & yarn run tauri:build - + - name: Check binary exists run: | - cd target/release/ - (test -f nym-wallet && echo nym binary exists) || echo wallet does not exist + cd target/release/ + (test -f nym-wallet && echo nym binary exists) || echo wallet does not exist - name: Install dependencies run: yarn install - working-directory: tauri-wallet/webdriver + working-directory: nym-wallet/webdriver - name: Remove existing user datafile uses: JesseTG/rm@v1.0.2 with: - path: tauri-wallet/webdriver/common/data/user-data.json + path: nym-wallet/webdriver/common/data/user-data.json - name: Create user data json file id: create-json uses: jsdaniell/create-json@1.1.2 with: - name: "user-data.json" - json: ${{ secrets.WALLET_USERDATA }} - dir: 'tauri-wallet/webdriver/common/data/' + name: "user-data.json" + json: ${{ secrets.WALLET_USERDATA }} + dir: "nym-wallet/webdriver/common/data/" - name: Install tauri-driver uses: actions-rs/cargo@v1 @@ -74,4 +74,4 @@ jobs: - name: Launch tests run: xvfb-run yarn test:runall - working-directory: tauri-wallet/webdriver + working-directory: nym-wallet/webdriver diff --git a/.github/workflows/tauri-wallet-publish.yml b/.github/workflows/tauri-wallet-publish.yml index 2b6be2578e..09a5b6b055 100644 --- a/.github/workflows/tauri-wallet-publish.yml +++ b/.github/workflows/tauri-wallet-publish.yml @@ -2,7 +2,7 @@ name: Publish Tauri Wallet on: push: tags: - - tauri-wallet-* + - nym-wallet-* jobs: build: diff --git a/.github/workflows/tauri-wallet-types.yml b/.github/workflows/tauri-wallet-types.yml index 10f9c09f2f..9569390145 100644 --- a/.github/workflows/tauri-wallet-types.yml +++ b/.github/workflows/tauri-wallet-types.yml @@ -3,13 +3,13 @@ name: Generate TS types on: push: paths-ignore: - - 'explorer/**' + - "explorer/**" pull_request: paths-ignore: - - 'explorer/**' + - "explorer/**" jobs: - tauri-wallet-types: + nym-wallet-types: runs-on: ubuntu-latest if: github.event_name != 'pull_request' steps: @@ -20,10 +20,10 @@ jobs: with: toolchain: stable - name: Generate TS - run: cd tauri-wallet/src-tauri && cargo test + run: cd nym-wallet/src-tauri && cargo test - uses: EndBug/add-and-commit@v7.2.1 # https://github.com/marketplace/actions/add-commit with: - add: '["tauri-wallet"]' - message: '[ci skip] Generate TS types' + add: '["nym-wallet"]' + message: "[ci skip] Generate TS types" env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}