fix: Add debug steps to CI workflow
Some checks failed
/ test (push) Failing after 4s

This commit is contained in:
2026-02-03 08:28:37 +00:00
parent cba5d3f506
commit 3a9ae49db5

View File

@@ -15,11 +15,19 @@ jobs:
node-version: '20' node-version: '20'
cache: 'npm' cache: 'npm'
- name: Display Node.js version
run: node --version
- name: Display npm version
run: npm --version
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci || npm install
- name: Build - name: Build
run: npm run build run: npm run build
- name: Run tests - name: Run tests
run: npm test run: npm test
env:
CI: true