From ec6068aa57438785324f7103291c12012e503bd7 Mon Sep 17 00:00:00 2001 From: Carson Moore Date: Wed, 26 Jul 2023 11:45:16 -0500 Subject: [PATCH] ci: add lint step to pr workflow --- .github/workflows/pr.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index b6291ae..0f3e10c 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -6,7 +6,7 @@ on: - main jobs: - build: + build_and_test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -23,5 +23,8 @@ jobs: - name: Unit tests run: npm run test:ci - - name: Build and lint frontend + - name: Lint + run: npm run lint + + - name: Build run: npm run build