diff --git a/.github/workflows/cli.test.yaml b/.github/workflows/cli.test.yaml index d45d06fd5..d0d8ac5a5 100644 --- a/.github/workflows/cli.test.yaml +++ b/.github/workflows/cli.test.yaml @@ -61,6 +61,11 @@ jobs: ENCRYPT_PASSWORD: "abc123" APP_PORT: "3000" + - name: Sleep for 10 seconds + uses: jakejarvis/wait-action@master + with: + time: "10s" + - name: Run tests run: yarn cli build && yarn cli test env: diff --git a/cli/package.json b/cli/package.json index d71b691e4..a11e2f608 100644 --- a/cli/package.json +++ b/cli/package.json @@ -19,7 +19,7 @@ "license": "MIT", "scripts": { "clean": "rm -rf dist", - "prebuild": "yarn --cwd='../..' vrf build", + "prebuild": "yarn --cwd='../' vrf build", "build": "yarn clean && tsc", "cli": "node --no-warnings --import=specifier-resolution-node/register --experimental-json-modules dist/index.js", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",