From 4374b19a28ab03da28e7b2849a2beb57f93f707f Mon Sep 17 00:00:00 2001 From: Brayan Perez Date: Tue, 19 Mar 2024 19:30:06 -0500 Subject: [PATCH] Build app in deploymnet pipeline --- .github/workflows/pipeline.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 8d04591..dd9f779 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -16,6 +16,8 @@ jobs: with: node-version: '20' - name: Install dependencies - run: npm install + run: npm install --no-audit --no-fund --no-optional - name: Linter - run: npm run lint \ No newline at end of file + run: npm run lint + - name: Build + run: npm run build \ No newline at end of file