Skip to content

Commit

Permalink
wip 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Slartibartfass2 committed Nov 10, 2024
1 parent b1a70b4 commit eca869e
Show file tree
Hide file tree
Showing 6 changed files with 705 additions and 17 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/code_quality_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
unit-test:
name: Unit Testing with Vitest
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -48,6 +51,17 @@ jobs:
- name: Run Vitest
run: npm run test:unit

- name: Setup LCOV
uses: hrishikesh-kadam/setup-lcov@v1

- name: Report code coverage
uses: zgosalvez/github-actions-report-lcov@v3
with:
coverage-files: coverage/lcov.info
artifact-name: code-coverage-report
github-token: ${{ secrets.GITHUB_TOKEN }}
update-comment: true

e2e-test:
name: End-to-End Testing with Playwright
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
test-results
node_modules

# Output
Expand All @@ -20,3 +19,7 @@ Thumbs.db
# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

# Vitest
test-results
coverage
Loading

0 comments on commit eca869e

Please sign in to comment.