Skip to content

fix: fetch rune address to avoid keccak hashed rune address issue from logs #7

fix: fetch rune address to avoid keccak hashed rune address issue from logs

fix: fetch rune address to avoid keccak hashed rune address issue from logs #7

Workflow file for this run

name: Rewards distribution
on:
workflow_dispatch:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
check:
strategy:
fail-fast: true
name: Typescript scripts
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
- name: Install Dependencies
id: install
run: |
yarn
cd scripts/rewards-distribution
yarn
- name: Run Typescript tests
id: test
run: |
cd scripts/rewards-distribution
yarn test