Skip to content

Commit f05c745

Browse files
authored
Upgrade SES to 1.13.0 for CI validation (cosmos#1689)
* Restore SES in CI * Update lock
2 parents a6e97cf + d437cf2 commit f05c745

36 files changed

+210
-0
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ jobs:
5353
SOCKETSERVER_ENABLED: 1
5454
SKIP_BUILD: 1
5555
WASMD_ENABLED: 1
56+
SES_ENABLED: 1
5657
run: yarn test --stream
5758
- name: Run CLI selftest
5859
working-directory: packages/cli

.pnp.cjs

Lines changed: 56 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:354e41c8b6a4d618e33401953d88c0e987872a3d078ada19d91134a262778788
3+
size 30978
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:3377e4d771e0fa98c47ad6d1df675473bece81e4dc134fd18e958b73eae55092
3+
size 46953
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:d3d76776ae82db2a347a855085777fad15634ec1a42d9c4b8c3596d00af8f9bc
3+
size 4231534

packages/amino/jasmine-testrunner.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
/* eslint-disable @typescript-eslint/naming-convention */
22

3+
if (process.env.SES_ENABLED) {
4+
require("ses");
5+
// eslint-disable-next-line no-undef
6+
lockdown();
7+
}
8+
39
require("source-map-support").install();
410
const defaultSpecReporterConfig = require("../../jasmine-spec-reporter.config.json");
511

packages/amino/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
"karma-jasmine-html-reporter": "^1.5.4",
7171
"nyc": "^15.1.0",
7272
"prettier": "^3.5.3",
73+
"ses": "^1.13.0",
7374
"source-map-support": "^0.5.19",
7475
"ts-node": "^8",
7576
"typedoc": "^0.28",

packages/cosmwasm-stargate/jasmine-testrunner.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
/* eslint-disable @typescript-eslint/naming-convention */
22

3+
if (process.env.SES_ENABLED) {
4+
require("ses");
5+
// eslint-disable-next-line no-undef
6+
lockdown();
7+
}
8+
39
require("source-map-support").install();
410
const defaultSpecReporterConfig = require("../../jasmine-spec-reporter.config.json");
511

packages/cosmwasm-stargate/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
"nyc": "^15.1.0",
7979
"prettier": "^3.5.3",
8080
"readonly-date": "^1.0.0",
81+
"ses": "^1.13.0",
8182
"source-map-support": "^0.5.19",
8283
"ts-node": "^8",
8384
"typedoc": "^0.28",

packages/crypto/jasmine-testrunner.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
/* eslint-disable @typescript-eslint/naming-convention */
22

3+
if (process.env.SES_ENABLED) {
4+
require("ses");
5+
// eslint-disable-next-line no-undef
6+
lockdown();
7+
}
8+
39
require("source-map-support").install();
410
const defaultSpecReporterConfig = require("../../jasmine-spec-reporter.config.json");
511

0 commit comments

Comments
 (0)