-
Notifications
You must be signed in to change notification settings - Fork 8
Convert test framework from Mocha/Chai to Vitest and update CI workflows #35
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
20f7656
35329ae
825e9b2
da5aa90
31f9c4a
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 |
|---|---|---|
|
|
@@ -8,11 +8,15 @@ permissions: | |
| 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 }} | ||
| - run: npx playwright install chromium | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @copilot we actually don't need playwright since we aren't using browser mode. Remove all installs in ci
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed playwright install steps from both nodejs.yml and publish.yml workflows. (commit: will be included in next push) |
||
| - name: npm install, build, and test | ||
| run: | | ||
| npm install | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.