From 4422aae11914a43d504bb891ae59dc7f997f4db3 Mon Sep 17 00:00:00 2001 From: Jaren Goldberg Date: Thu, 4 Jul 2024 00:11:17 -0400 Subject: [PATCH] fix(actions): workflow scripts --- .github/workflows/cicd.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 9d6e5bd..89c79f5 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -6,7 +6,7 @@ name: Continuous Integration / Deployment on: push: branches: - - '**' + - "**" pull_request: jobs: @@ -32,8 +32,11 @@ jobs: - name: Install Dependencies run: npm ci - - name: Lint Source Code - run: npm run test:spec - - name: Compile Source Code run: npm run build:ci + + - name: Test Source Code + run: npm run test:spec + + - name: Lint Source Code + run: npm run lint