fix(wallet): fix from-to in chain history provider #120
This file contains 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: UI CI | |
on: | |
push: | |
branches: [main] | |
paths: | |
- packages/features/** | |
- packages/ui/** | |
workflow_dispatch: | |
concurrency: | |
group: pages | |
cancel-in-progress: false | |
jobs: | |
ui_ci: | |
name: UI Continuous Integration | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
permissions: | |
pages: write | |
id-token: write | |
env: | |
VITE_APP_MODE: web | |
VITE_APP_DEFAULT_NETWORK: Berkeley | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Setup env | |
uses: ./.github/actions/setup | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
TURBO_SERVER_TOKEN: ${{ secrets.TURBO_SERVER_TOKEN }} | |
- name: Build features | |
env: | |
TURBO_API: 'http://127.0.0.1:9080' | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: pallad | |
run: VITE_APP_MODE=$VITE_APP_MODE pnpm build:features | |
- name: Build features stories | |
run: pnpm story:features | |
- name: Upload pages artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
name: features-stories | |
path: packages/features/build | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 | |
with: | |
artifact_name: features-stories |