From 28279942ad361e1db9427cd199aff004e701f215 Mon Sep 17 00:00:00 2001 From: Juan Sebastian Montoya Date: Tue, 6 May 2025 00:35:44 -0500 Subject: [PATCH] chore: update CI workflow to include linting and type-checking - Added linting step to ensure code quality. - Included type-checking step to verify TypeScript types. --- .forgejo/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index e349a4d..d1ac611 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -6,7 +6,7 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Status - run: git status - - name: Host - run: cat /etc/hosts \ No newline at end of file + - name: Lint + run: npm run lint + - name: Check Types + run: npm run check-types