From 50245be6f5db5fad0f882b5ec881c86fbed0e3bb Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Wed, 21 Jan 2026 14:18:52 +0100 Subject: [PATCH] ci: fix lint pipeline --- .gitea/workflows/pipeline.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/pipeline.yaml b/.gitea/workflows/pipeline.yaml index 63bfcf9..e3e50be 100644 --- a/.gitea/workflows/pipeline.yaml +++ b/.gitea/workflows/pipeline.yaml @@ -14,16 +14,13 @@ jobs: - name: Checkout repository uses: https://gitea.com/actions/checkout@v4 - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'npm' + - name: Install node and npm + run: apt-get update && apt-get install -y nodejs npm - name: Install dependencies for frontend working-directory: ./frontend run: npm ci - + - name: Lint frontend working-directory: ./frontend run: npm run lint