Update Node.js version and add linting step

Updated Node.js version and added linting step.
This commit is contained in:
Johan LEROY
2025-12-08 14:16:33 +01:00
committed by GitHub
parent b99c7e4cf3
commit 5e2bacdafe

View File

@@ -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