Skip to content
This repository has been archived by the owner on Jul 14, 2024. It is now read-only.

fix: fix getModel and getVehicleBodyWork #270

fix: fix getModel and getVehicleBodyWork

fix: fix getModel and getVehicleBodyWork #270

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3.5.3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7
run_install: false
- name: Install dependencies
run: pnpm i --no-frozen-lockfile
- name: Prisma Generate
run: pnpm prisma generate
- name: Linting
run: pnpm lint
- name: Test
run: pnpm test
- name: Build
run: pnpm build