Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update nym_wallet.yml #840

Merged
merged 1 commit into from
Oct 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions .github/workflows/nym_wallet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- '/tauri-wallet/*'
defaults:
run:
working-directory: tauri-wallet
working-directory: tauri-wallet/

jobs:
test:
Expand All @@ -27,19 +27,40 @@ jobs:
webkit2gtk-driver
xvfb

- name: Install minimal stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable

- name: Node v16
uses: actions/setup-node@v1
with:
node-version: 16.x

- name: Install yarn for building application
run: yarn install

- name: Build application
run: yarn run webpack:build & yarn run tauri:build
working-directory: tauri-wallet

- name: Yarn install
- name: Install dependencies
run: yarn install
working-directory: webdriver/

- name: Remove existing user datafile
uses: JesseTG/rm@v1.0.2
with:
path: webdriver/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: 'webdriver/data/'

- name: Install tauri-driver
uses: actions-rs/cargo@v1
with:
Expand Down