Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Run Prettier check
run: npx prettier --check "**/*.{js,json,md,html,css}" || echo "⚠️ Formatting issues found - run 'npm run prettier' to fix"

- name: Run Jest tests
run: npm run test:unit:ci

Expand Down Expand Up @@ -105,16 +105,20 @@ jobs:
run: npm ci

- name: Run ESLint with error reporting
run: npm run lint:ci || echo "⚠️ ESLint issues found - run 'npm run lint' to check"

- name: Run Prettier check with error reporting
run: npm run format:check || echo "⚠️ Format issues found - run 'npm run prettier' to fix"
run: npm run lint:ci || echo "⚠️ ESLint issues found - run 'npm run lint' to check"

- name: Run Prettier check with error reporting
run: npm run format:check || echo "⚠️ Format issues found - run 'npm run prettier' to fix"

- name: Check for security vulnerabilities
run: npm audit --audit-level=moderate

- name: Run dependency check
run: npm outdated || true

- name: Run dependency check
run: npm outdated || true

salesforce-deploy-check:
name: Salesforce Deploy Check
runs-on: ubuntu-latest
Expand Down