fix: update mobile web trade form for better ux experience on isolated trades #257
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up pnpm | |
uses: dydxprotocol/setup-pnpm@v2.0.0 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- run: | | |
pnpm install --ignore-scripts --frozen-lockfile | |
tar -xzC public -f tradingview/tradingview.tgz # manually inline postinstall script | |
- run: pnpm exec vitest run |