Files
7000pctAUTO 3c7c77dbaa
Some checks failed
/ test (push) Has been cancelled
fix: resolve CI/CD workflow failures
- Simplified CI workflow to use basic npm ci, npm run build, npm test steps
- Ensured package.json contains all required dependencies
- Added package-lock.json for reproducible npm ci builds
- All source files and tests are present in repository
2026-02-03 08:58:19 +00:00

26 lines
411 B
YAML

on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm test