feat: support cosmos enigma utils #400
Workflow file for this run
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-example-web-build | |
| on: | |
| pull_request: | |
| branches: [main,master] | |
| jobs: | |
| test_build_web: | |
| runs-on: ubuntu-latest | |
| env: | |
| TEST_ENDPOINT: dapp-example.onekeytest.com | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Environment | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| registry-url: 'https://registry.npmjs.org' | |
| cache: 'yarn' | |
| - name: Install and Build Workspace | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| yarn | |
| yarn bootstrap | |
| yarn build | |
| - name: Build Example | |
| run: | | |
| cd packages/example && yarn build |