fix: Fixes invalid parameters in LOM.

This commit is contained in:
greysoh 2024-05-10 12:37:22 -04:00
parent 8eeab0d6b4
commit 09f7987e75
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37

View file

@ -14,21 +14,6 @@ jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_USERNAME: nextnet
POSTGRES_PASSWORD: nextnet
POSTGRES_DB: nextnet
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- name: Checkout code using Git
uses: actions/checkout@main
@ -39,19 +24,15 @@ jobs:
node-version: 20.x
- name: Install dependencies
working-directory: api
working-directory: lom
run: npm install --save-dev
- name: Install prisma
working-directory: api
run: npx prisma migrate dev
- name: Build source
working-directory: api
working-directory: lom
run: npm build
- name: Run eslint
working-directory: api
working-directory: lom
run: npx eslint src
- name: Run prettier to verify if we're formatted or not