Skip to content

test: implement OrderItems display component tests (#15) (#69) #18

test: implement OrderItems display component tests (#15) (#69)

test: implement OrderItems display component tests (#15) (#69) #18

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Type check
run: pnpm check
- name: Unit tests
run: pnpm test:unit --run
- name: E2E tests
run: pnpm test:e2e