From 9b23ce813a22ce0701a28f11740ec7b3eeeea541 Mon Sep 17 00:00:00 2001 From: Mathieu Strypsteen Date: Sun, 3 Mar 2024 15:34:57 +0100 Subject: [PATCH] Rename actions --- .github/workflows/backend.yml | 2 +- .github/workflows/frontend.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index 76c7911d..e02562ab 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -1,7 +1,7 @@ name: Backend on: [push] jobs: - lint: + lint-backend: runs-on: self-hosted steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index bb6ac559..0464715a 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -1,7 +1,7 @@ name: Frontend on: [push] jobs: - lint: + lint-frontend: runs-on: self-hosted steps: - uses: actions/checkout@v4 @@ -14,4 +14,4 @@ jobs: - name: Lint code run: cd frontend && npx eslint . - name: Run TypeScript checks - run: cd frontend && npx tsc --noEmit \ No newline at end of file + run: cd frontend && npx tsc --noEmit