From cb0e40ed116c4e0c79ff7d903e506f6a2178a8d4 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Fri, 29 Sep 2023 08:09:29 -0400 Subject: [PATCH] workflows: run the linter in CI Signed-off-by: Vincent Batts --- .gitea/workflows/basic.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/basic.yaml b/.gitea/workflows/basic.yaml index 55276d3..75e777f 100644 --- a/.gitea/workflows/basic.yaml +++ b/.gitea/workflows/basic.yaml @@ -20,4 +20,6 @@ jobs: run: npm install - name: Run tests run: npm test + - name: Lint + run: npm run lint - run: echo "🍏 This job's status is ${{ job.status }}."