Skip to content

Commit

Permalink
test: refactoring return lic check
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed Aug 20, 2024
1 parent 2c292b8 commit 2111a94
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/api-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ jobs:

- name: Stop containers
if: always()
run: docker compose -f "docker-compose.e2e.yaml" down
run: docker compose -f "docker-compose.e2e.yaml" down
6 changes: 3 additions & 3 deletions .github/workflows/nodejs-license.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ jobs:
- name: Install dependencies
run: npm ci

# - name: Check licenses in ${{ matrix.dir }}
# working-directory: ${{ matrix.dir }}
# run: npx license-checker --json --onlyAllow "$ALLOWED_LICENSES" --exclude chai-as-promised --excludePackages "$EXCLUDE_PACKAGES"
- name: Check licenses in ${{ matrix.dir }}
working-directory: ${{ matrix.dir }}
run: npx license-checker --json --onlyAllow="$ALLOWED_LICENSES" --excludePackages "$EXCLUDE_PACKAGES"
2 changes: 1 addition & 1 deletion packages/data-fetcher/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ RPC_CALLS_RETRIES_MAX_TOTAL_TIMEOUT=12000
RPC_CALLS_CONNECTION_TIMEOUT=6000
RPC_CALLS_CONNECTION_QUICK_TIMEOUT=10000

MAX_BLOCKS_BATCH_SIZE=20
MAX_BLOCKS_BATCH_SIZE=20
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ contract TokenF2L2 {
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Deployer } from "@matterlabs/hardhat-zksync-deploy";
import { promises as fs } from "fs";

// import { localConfig } from "../../config";
import { Buffer } from "../../entities";
import getWallet from "../utils/getWallet";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ export const deployERC20toL1 = async function () {
const bufferFile = playbookRoot + "/" + Buffer.L1;

await helper.executeScript(`cd ${playbookRoot} && npm run compile`);
await helper.delay(1500);
await helper.executeScript(`cd ${playbookRoot} && npm run deployToL1`);
await helper.delay(1500);

const deployedToken = await helper.getStringFromFile(bufferFile);
console.log("The custom ERC20 token has been deployed to L1: ", Logger.textSeparator, deployedToken);

Expand Down

0 comments on commit 2111a94

Please sign in to comment.