query a little more stock history and lock min/max so that we have a … #2094
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: Run tests | |
| on: | |
| push: | |
| branches: ["*"] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20.15.1 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.12.2 | |
| run_install: true | |
| - name: Run tests | |
| run: pnpm test run | |