fix: Simplify CI workflow to isolate issue
Some checks failed
/ test (push) Failing after 46s

This commit is contained in:
2026-02-03 08:29:29 +00:00
parent 3a9ae49db5
commit 7c74080a2d

View File

@@ -13,21 +13,11 @@ jobs:
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:
node-version: '20' node-version: '20'
cache: 'npm'
- name: Display Node.js version - name: Install and build
run: node --version run: |
npm install
- name: Display npm version npm run build
run: npm --version
- name: Install dependencies
run: npm ci || npm install
- name: Build
run: npm run build
- name: Run tests - name: Run tests
run: npm test run: npm test
env:
CI: true