Skip to content

Products order

Products order #115

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: TypeScript check
run: pnpm tsc -b
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test:run
- name: Build
run: pnpm build