From 39eabd9292a6102cfe4667ac89cf0943705fb197 Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Tue, 6 May 2025 15:05:14 +0200 Subject: [PATCH] Update .gitea/workflows/lint.yml --- .gitea/workflows/lint.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml index ab45e11..96c5010 100644 --- a/.gitea/workflows/lint.yml +++ b/.gitea/workflows/lint.yml @@ -1,4 +1,4 @@ -name: Lint +name: Check on: pull_request: @@ -7,8 +7,8 @@ on: - '**' # matches every branch jobs: - eslint: - name: Lint + lint_and_check: + name: Lint and Check runs-on: ubuntu-latest steps: @@ -24,5 +24,5 @@ jobs: - name: Install dependencies run: npm ci - - name: Run lint check - run: npm run lint + - name: Run check + run: npm run check