Fix: Add npm install step to CI workflow

This commit is contained in:
2025-09-26 07:21:00 -07:00
parent d0bc019400
commit d54557c8d4

View File

@@ -21,6 +21,9 @@ jobs:
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run tests
id: run-tests
run: npm test
@@ -35,3 +38,4 @@ jobs:
- name: Check test step outcome
if: steps.run-tests.outcome == 'failure'
run: exit 1