chore: sync package scripts and fix lint errors in tests#164
Merged
joshjohanning merged 2 commits intomainfrom Mar 29, 2026
Merged
chore: sync package scripts and fix lint errors in tests#164joshjohanning merged 2 commits intomainfrom
joshjohanning merged 2 commits intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR aligns the project’s npm scripts with a shared Node.js Action template and resolves ESLint quotes rule failures in Jest tests.
Changes:
- Updated
package.jsonscripts (rename/add scripts, adjust lint scope, consolidate Jest invocation withNODE_OPTIONS). - Fixed two ESLint quote-rule violations in
__tests__/index.test.jsby switching to template literals.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Syncs scripts (format/lint/test/package/all) to the standard template and adds bundle / package:watch. |
| tests/index.test.js | Adjusts string literals to satisfy ESLint quotes rule. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Syncs
package.jsonscripts to match the standard template used across other actions in this repo, and fixes two ESLint quote errors in the test file.Changes
package.jsonformat→format:writeto match standard script naming conventiontest:coverage→ci-test(now includes bash tests + Jest coverage)test:jsscript (inlined intotestandci-test)lintto usenpx eslint .instead ofnpx eslint src/**/*.jspackagescript argument orderbundlescript (format:write+package)package:watchscriptallscript to use new script names__tests__/index.test.jsquotesrule