Skip to content

Unify order lifecycle services and expand admin trading flows #12

Unify order lifecycle services and expand admin trading flows

Unify order lifecycle services and expand admin trading flows #12

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
package: [core, markets, api]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
run_install: false
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: corepack enable
- run: corepack pnpm install --frozen-lockfile
- name: Test & Coverage
run: corepack pnpm --filter @unimarket/${{ matrix.package }} test:coverage
- name: Upload Coverage
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-${{ matrix.package }}
path: packages/${{ matrix.package }}/coverage