Skip to content

Commit

Permalink
update(deps) : jsdom,mocha (#1030)
Browse files Browse the repository at this point in the history
ci(deps): update jsdom,mocha
  • Loading branch information
JagadeeshKaricherla-branch authored Jun 26, 2024
1 parent 26eebfa commit e2b3837
Show file tree
Hide file tree
Showing 7 changed files with 266 additions and 482 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-merger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
core.setOutput('pr_list', combinedPRsString);
- name: Post to a Slack channel
uses: slackapi/slack-github-action@v1.24.0
uses: slackapi/slack-github-action@v1.26.0
id: slack
with:
channel-id: "C03RTLRKJQP"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-readme-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
--data "$payload"

- name: Announce New Release in Slack
uses: slackapi/slack-github-action@v1.24.0
uses: slackapi/slack-github-action@v1.26.0
with:
channel-id: "C063MQJMKJN" #sdk-releases
payload: |
Expand Down
2 changes: 1 addition & 1 deletion .mocharc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
// Otherwise, JSON or YAML is recommended.

module.exports = {
require: ['./node_modules/google-closure-library', './test/branch-deps.js', './node_modules/jsdom-global/register.js', './test/test-utils.js', './node_modules/sinon/lib/sinon.js'],
require: ['./node_modules/google-closure-library', './test/branch-deps.js', 'global-jsdom/register', './test/test-utils.js', './node_modules/sinon/lib/sinon.js'],
spec: ['./test/0_config.js','./test/0_queue.js','./test/1_utils.js','./test/6_branch_new.js', './test/journeys_utils.js']
};
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ example.html: src/web/example.template.html
ifeq ($(MAKECMDGOALS), release)
perl -pe 'BEGIN{$$a="$(ONPAGE_RELEASE)"}; s#// INSERT INIT CODE#$$a#' src/web/example.template.html > example.html
else ifeq ($(MAKECMDGOALS),dev)
perl -pe 'BEGIN{$$a="$(ONPAGE_DEV)"; $$b="$(KEY_VALUE)"}; s#// INSERT INIT CODE#$$a#; s#key_place_holder#$$b#' src/web/example.template.html > dev/example.html
perl -pe 'BEGIN{$$b="$(KEY_VALUE)"}; s#key_place_holder#$$b#' src/web/example.template.html > dev/example.template.html
perl -pe 'BEGIN{$$a="$(ONPAGE_DEV)"}; s#// INSERT INIT CODE#$$a#' dev/example.template.html > dev/example.html
rm -rf dev/example.template.html
else
perl -pe 'BEGIN{$$a="$(ONPAGE_DEV)"}; s#// INSERT INIT CODE#$$a#' src/web/example.template.html > example.html
endif
Expand Down
Loading

0 comments on commit e2b3837

Please sign in to comment.