From 5e2bacdafe755e4b4aa9b4a8a881e24719b0c8bd Mon Sep 17 00:00:00 2001 From: Johan LEROY <113677147+JohanLeroy@users.noreply.github.com> Date: Mon, 8 Dec 2025 14:16:33 +0100 Subject: [PATCH] Update Node.js version and add linting step Updated Node.js version and added linting step. --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2a24c67..b811084 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,10 +17,13 @@ jobs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - name: Install dependencies run: npm install - name: Run tests run: npm test + + - name: Lint code + run: npm run lint