Refactor simulate functions to use a consistent parameter naming convention across multiple files #3135
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: build | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/build.yml' | |
| - 'packages/{core,fetcher,sdk,e2e}/src/**' | |
| - 'packages/{core,fetcher,sdk,e2e}/package.json' | |
| - 'test/**' | |
| - 'test/package.json' | |
| - 'package.json' | |
| jobs: | |
| Ubuntu: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x, 22.x, lts/*] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 8 | |
| - name: Install dependencies | |
| run: pnpm install --force | |
| - name: Build | |
| run: npm run build | |
| - name: test | |
| working-directory: ./test | |
| run: pnpm install --force && npm start -- --skipBuild |