Skip to content

Commit

Permalink
pipeline fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Husienvora authored and Husienvora committed Oct 21, 2024
1 parent 9e97795 commit 1a8d7a2
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 40 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
env:
CI: true
GITHUB_ACTIONS: true
OLD_MNEMONIC:"fun rough treat scan glimpse region century purpose expire video remind second"
MNEMONIC:"vintage reflect pass input polar enlist giggle judge render position also document"
PIN:"696969"
PRIVATE_KEY_EVM:"0x7a9633b8103fec11c9e855a6b6c8c072e9af311a69b92ab0ad8186b1fb57371f"
OLD_MNEMONIC: "fun rough treat scan glimpse region century purpose expire video remind second"
MNEMONIC: "vintage reflect pass input polar enlist giggle judge render position also document"
PIN: "696969"
PRIVATE_KEY_EVM: "0x7a9633b8103fec11c9e855a6b6c8c072e9af311a69b92ab0ad8186b1fb57371f"
PRIVATE_KEY_BTC: "KzQfcdjDRUwpVmKKev6k2aAeJFJ359Ht9Umxdg77MTzf2E3bzGsC"
EVM_ADDRESS_1:'0x6bbc122fa843f3ed30d23f8cdd9a430d1f898d07'
EVM_ADDRESS_2:"0xbae949ddb4d8ac763c12f206db842b9b2d49a464"
BITCOIN_ADDRESS_1:"bc1qugw5q5yrzw86wnw3lgldm8en0c736k4hvceuzl"
BITCOIN_ADDRESS_2:"bc1qta5f6q32cphxt5rck3kuspukac7keqvxyuk4cl"
EVM_ADDRESS_1: "0x6bbc122fa843f3ed30d23f8cdd9a430d1f898d07"
EVM_ADDRESS_2: "0xbae949ddb4d8ac763c12f206db842b9b2d49a464"
BITCOIN_ADDRESS_1: "bc1qugw5q5yrzw86wnw3lgldm8en0c736k4hvceuzl"
BITCOIN_ADDRESS_2: "bc1qta5f6q32cphxt5rck3kuspukac7keqvxyuk4cl"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand Down
63 changes: 31 additions & 32 deletions .github/workflows/other-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name: Feature/Bugfix branch

on:
# workflow_call:
# workflow_call:
push:
branches:
- feature-*
Expand All @@ -13,48 +13,47 @@ on:
- test
pull_request:
branches:
- feature-*
- bugfix-*
- dev
- test
- feature-*
- bugfix-*
- dev
- test
paths:
- package.json
- CHANGELOG
- CHANGELOG

jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
GITHUB_ACTIONS: true
OLD_MNEMONIC:"fun rough treat scan glimpse region century purpose expire video remind second"
MNEMONIC:"vintage reflect pass input polar enlist giggle judge render position also document"
PIN:"696969"
PRIVATE_KEY_EVM:"0x7a9633b8103fec11c9e855a6b6c8c072e9af311a69b92ab0ad8186b1fb57371f"
OLD_MNEMONIC: "fun rough treat scan glimpse region century purpose expire video remind second"
MNEMONIC: "vintage reflect pass input polar enlist giggle judge render position also document"
PIN: "696969"
PRIVATE_KEY_EVM: "0x7a9633b8103fec11c9e855a6b6c8c072e9af311a69b92ab0ad8186b1fb57371f"
PRIVATE_KEY_BTC: "KzQfcdjDRUwpVmKKev6k2aAeJFJ359Ht9Umxdg77MTzf2E3bzGsC"
EVM_ADDRESS_1:'0x6bbc122fa843f3ed30d23f8cdd9a430d1f898d07'
EVM_ADDRESS_2:"0xbae949ddb4d8ac763c12f206db842b9b2d49a464"
BITCOIN_ADDRESS_1:"bc1qugw5q5yrzw86wnw3lgldm8en0c736k4hvceuzl"
BITCOIN_ADDRESS_2:"bc1qta5f6q32cphxt5rck3kuspukac7keqvxyuk4cl"
EVM_ADDRESS_1: "0x6bbc122fa843f3ed30d23f8cdd9a430d1f898d07"
EVM_ADDRESS_2: "0xbae949ddb4d8ac763c12f206db842b9b2d49a464"
BITCOIN_ADDRESS_1: "bc1qugw5q5yrzw86wnw3lgldm8en0c736k4hvceuzl"
BITCOIN_ADDRESS_2: "bc1qta5f6q32cphxt5rck3kuspukac7keqvxyuk4cl"
steps:
- name: Code checkout
uses: actions/checkout@v2
- name: Code checkout
uses: actions/checkout@v2

- name: Setting up Node.js
uses: actions/setup-node@v2
with:
node-version: 18.x

- name: Setting up Node.js
uses: actions/setup-node@v2
with:
node-version: 18.x
- name: Installing dependencies
run: npm ci

- name: Installing dependencies
run: npm ci

- name: Run tests
run: |
npm run test
npx jest --coverage | tee ./coverage.txt && exit ${PIPESTATUS[0]}
- name: Run tests
run: |
npm run test
npx jest --coverage | tee ./coverage.txt && exit ${PIPESTATUS[0]}
- name: Jest Coverage Comment
uses: MishaKav/jest-coverage-comment@main
with:
coverage-path: ./coverage.txt

- name: Jest Coverage Comment
uses: MishaKav/jest-coverage-comment@main
with:
coverage-path: ./coverage.txt

0 comments on commit 1a8d7a2

Please sign in to comment.