chore(deps): bump minor/patch dependencies #532
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: quality | |
| # https://docs.github.com/en/actions/reference/events-that-trigger-workflows#push | |
| on: [push] | |
| jobs: | |
| main: | |
| # https://github.com/actions/runner-images | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 23 | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: | | |
| pnpm install | |
| - name: Lint | |
| run: | | |
| pnpm lint:ci | |
| - name: Check examples/basic | |
| run: | | |
| cd examples/basic | |
| ./check.sh | |
| - name: Check examples/standalone | |
| run: | | |
| cd examples/standalone | |
| ./check.sh | |
| - name: Check examples/supertrader | |
| run: | | |
| cd examples/supertrader | |
| ./check.sh | |
| nohup pnpm run:server-node-express & | |
| sleep 3 | |
| curl -X POST -H "Content-Type: application/json" http://localhost:7443/api/v1/Trading_BuyAsset | |
| pnpm run:cli Trading_BuyAsset |