Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 2 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
6 changes: 5 additions & 1 deletion .github/workflows/javascript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v1
with:
node-version: '12'
node-version: "12"
- name: Install dev deps
working-directory: src/dispatch/static/dispatch
run: |
Expand All @@ -21,3 +21,7 @@ jobs:
working-directory: src/dispatch/static/dispatch
run: |
npm run lint
- name: Run Vitest
working-directory: src/dispatch/static/dispatch
run: |
npm run test:coverage
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -211,3 +211,5 @@ docker/.env
/playwright-report/
/playwright/.cache/
/tests/static/e2e/artifacts/*
src/dispatch/static/dispatch/tests/__snapshots__
src/dispatch/static/dispatch/coverage
Loading