Skip to content

Commit

Permalink
chore: debug gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasRalee committed May 31, 2024
1 parent 5223088 commit ed99eed
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
with:
fetch-depth: 0 # Checkout all branches and tags

- name: 'Use NodeJS 16' # Setup node using version 14
- name: 'Use NodeJS 18' # Setup node using version 14
uses: actions/setup-node@v2 # Public action
with:
node-version: '16.18.1'
node-version: '18.17.0'

- name: Setup [email protected]
run: yarn global add [email protected] --ignore-engines
Expand Down
39 changes: 39 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Test gh actions

on:
push:
branches:
- feat/test-gh-actions

jobs:
publish:
if: true
runs-on: ubuntu-latest

permissions: write-all

steps:
- name: Checkout # Download code from the repository
uses: actions/checkout@v2 # Public action
with:
fetch-depth: 0 # Checkout all branches and tags

- name: 'Use NodeJS 18' # Setup node using version 14
uses: actions/setup-node@v2 # Public action
with:
node-version: '18.17.0'

- name: Setup [email protected]
run: yarn global add [email protected] --ignore-engines

- name: Set up Git user
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
- name: Build dependencies
run: |
lerna clean --yes
node etc/bootstrapEnv
yarn install --ignore-engines
yarn build
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"scripts": {
"postinstall": "node etc/bootstrapEnv",
"build": "node etc/bootstrapEnv && lerna run --parallel build",
"build": "node etc/bootstrapEnv && lerna run build",
"build:docs": "yarn typedoc",
"lerna:publish:prerelease": "lerna publish --conventional-commits --conventional-prerelease",
"lerna:publish": "lerna publish patch",
Expand Down
20 changes: 20 additions & 0 deletions packages/token-metadata/src/tokens/tokens/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3873,4 +3873,24 @@ export default {
},
],
},

MOTHER2: {
name: 'MOTHER2 IGGY',
coinGeckoId: 'mother-iggy',
logo: 'mother.webp',

ibcs: [
{
symbol: 'MOTHER',
decimals: 6,
isNative: false,
baseDenom:
'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/3yX6ZZbagFp8pLni1gsy9zifaCMYyARGqADqCBwgABgA',
path: 'transfer/channel-183',
channelId: 'channel-183',
hash: '984E90A8E0265B9804B7345C7542BF9B3046978AE5557B4AABADDFE605CACABE',
source: TokenSource.Solana,
},
],
},
} as Record<string, TokenMetaBase>

0 comments on commit ed99eed

Please sign in to comment.