From a353b8887a3acc8f1ce92744a5909667ce0addc3 Mon Sep 17 00:00:00 2001 From: midudev Date: Sun, 8 Aug 2021 20:43:35 +0200 Subject: [PATCH] Build and test app in deployment pipeline --- .github/workflows/pipeline.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 7a0ed4c..cc27877 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -16,6 +16,10 @@ jobs: with: node-version: '14' - name: Install dependencies - run: npm install + run: npm install --no-audit --no-fund --no-optional - name: Lint - run: npm run eslint \ No newline at end of file + run: npm run eslint + - name: Build + run: npm run build + - name: Test + run: npm test \ No newline at end of file