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

refacto: remove started property #261

refacto: remove started property

refacto: remove started property #261

Workflow file for this run

name: Backend
on:
push:
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- run: npm ci
- run: npm run lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- run: npm ci
- run: npx prisma generate
- run: npm run build