Skip to content
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

npm migration hotfixes #1087

Merged
merged 1 commit into from
Sep 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
command: npm run solhint
- run:
name: "Check git hooks run"
command: yarn run check:gitchanges
command: npm run check:gitchanges
- run:
name: "Checking contract storage variables"
command: npm run check:storagevars
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
- <<: *step_setup_global_packages
- run:
name: "Running upgrade tests with coverage"
command: yarn run test:contracts:upgrade:coverage
command: npm run test:contracts:upgrade:coverage
environment:
NODE_OPTIONS: --max_old_space_size=4096
- persist_to_workspace:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ coverage-miner
lib/*
ganache-accounts.json
.vscode/
yarn-error.log
reputations.json
reputationStates.sqlite
reputationStates.sqlite-shm
Expand Down
4 changes: 2 additions & 2 deletions packages/metatransaction-broadcaster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM node:14-bullseye
COPY ./packages ./packages
COPY ./package.json ./
COPY ./yarn.lock ./
COPY ./package-lock.json ./
COPY ./build ./build
RUN yarn
RUN npm ci
EXPOSE 3000
CMD node $NODE_ARGS packages/metatransaction-broadcaster/bin/index.js --colonyNetworkAddress $COLONYNETWORK_ADDRESS --privateKey $PRIVATE_KEY --gasLimit $GASLIMIT $ARGS