Skip to content

Commit

Permalink
chore(github): update CI to test transform-metering
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Feb 11, 2020
1 parent 905061c commit 69210f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/test-all-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ jobs:
run: cd packages/eventual-send && yarn test
- name: yarn test (transform-eventual-send)
run: cd packages/transform-eventual-send && yarn test
- name: yarn test (transform-metering)
run: cd packages/transform-metering && yarn test
- name: yarn test (default-evaluate-options)
run: cd packages/default-evaluate-options && yarn test
- name: yarn test (evaluate)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"prettier": "yarn workspaces run prettier",
"link-cli": "node ./scripts/link-cli.js",
"lint-fix": "yarn workspaces run lint-fix",
"lint-check": "cd packages/marshal && yarn lint-check && cd ../SwingSet && yarn lint-check && cd ../ERTP && yarn lint-check && cd ../zoe && yarn lint-check && cd ../acorn-eventual-send && yarn lint-check && cd ../eventual-send && yarn lint-check && cd ../transform-eventual-send && yarn lint-check && cd ../default-evaluate-options && yarn lint-check && cd ../evaluate && yarn lint-check && cd ../bundle-source && yarn lint-check && cd ../captp && yarn lint-check",
"lint-check": "cd packages/marshal && yarn lint-check && cd ../SwingSet && yarn lint-check && cd ../ERTP && yarn lint-check && cd ../zoe && yarn lint-check && cd ../acorn-eventual-send && yarn lint-check && cd ../eventual-send && yarn lint-check && cd ../transform-eventual-send && yarn lint-check && cd ../transform-metering && yarn lint-check && cd ../default-evaluate-options && yarn lint-check && cd ../evaluate && yarn lint-check && cd ../bundle-source && yarn lint-check && cd ../captp && yarn lint-check",
"lint-check-all": "yarn workspaces run lint-check",
"test": "yarn workspaces run test",
"build": "yarn workspaces run build"
Expand Down
1 change: 1 addition & 0 deletions packages/transform-metering/src/endow.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export function makeMeteringEndowments(
const meterId = overrideMeterId;

const wrapDescriptor = desc =>
// eslint-disable-next-line no-use-before-define
fromEntries(entries(desc).map(([k, v]) => [k, wrap(v)]));

const shadowedRegexp = globalsToShadow.RegExp;
Expand Down

0 comments on commit 69210f8

Please sign in to comment.