remove pollingPeriod from cosm wasm chain interactor (#262) #145
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test SDKs | |
| on: | |
| push: | |
| jobs: | |
| test-fast-evm-sdk: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| cache-dependency-path: "./chains/evm/sdks/stork_fast_evm_sdk/package-lock.json" | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| version: "v1.2.3" | |
| - name: Show Forge Version | |
| run: forge --version | |
| - name: Install dependencies for StorkFastEVM SDK | |
| run: npm install | |
| working-directory: ./chains/evm/sdks/stork_fast_evm_sdk | |
| - name: Run hardhat tests for StorkFastEVM SDK | |
| run: forge test | |
| working-directory: ./chains/evm/sdks/stork_fast_evm_sdk |