-
Notifications
You must be signed in to change notification settings - Fork 98
Migrate from Karma/Mocha/Chai to Vitest with Playwright browser mode #145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
a7822ce
5b8f9d5
5d11c2b
1d5afee
ff3d6c3
9ce2a3c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,12 +7,17 @@ on: [push, pull_request] | |
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| node-version: [22, 24] | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 22 | ||
| node-version: ${{ matrix.node-version }} | ||
| cache: npm | ||
| - name: Install Playwright browsers | ||
| run: npx playwright install --with-deps chromium | ||
|
||
| - name: npm install, build, and test | ||
| run: | | ||
| npm install | ||
|
|
||
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copilot remove this matrix and just use 24
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in 8b0f8ca. Removed the matrix strategy and now using Node 24 only.