From 8ef8163425c8010454c18629c8793ecd60cb8aa8 Mon Sep 17 00:00:00 2001 From: Nathan Smith Date: Tue, 23 Apr 2024 00:00:21 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20ci:=20#107=20Add=20test=20to=20c?= =?UTF-8?q?ode=20check=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/code-check.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code-check.yml b/.github/workflows/code-check.yml index 0b8215e..0fdf38d 100644 --- a/.github/workflows/code-check.yml +++ b/.github/workflows/code-check.yml @@ -6,13 +6,14 @@ on: jobs: build: uses: "./.github/workflows/build.yml" - lint: + check: needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 - - name: Lint + - name: Lint and Test run: | npm install npm run lint + npm run test