diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index c25fb9b..e5be792 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -41,11 +41,11 @@ jobs: node-version: '20' - name: Install deps - run: cd ${{env.DIR}} && npm i - - name: Run test - run: cd ${{env.DIR}} && npm run test + run: npm i --workspaces - name: Compile - run: cd ${{env.DIR}} && npm run build + run: npm run build --workspaces + - name: Run test + run: npm run test --workspaces - name: Bump version run: cd ${{env.DIR}} && npm version ${{github.event.inputs.semver}} diff --git a/apps/cli/package.json b/apps/cli/package.json index 46a778d..da76041 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -35,11 +35,12 @@ }, "type": "module", "dependencies": { - "allure-deployer-shared": "1.1.4", "@google-cloud/storage": "^7.14.0", + "allure-deployer-shared": "1.1.4", "commander": "^12.1.0", "conf": "^13.1.0", - "ora": "^8.1.1" + "ora": "^8.1.1", + "shared": "^0.2.0" }, "devDependencies": { "@types/chai": "^5.0.1", diff --git a/apps/shared/package.json b/apps/shared/package.json index bf7c6cd..efb9714 100644 --- a/apps/shared/package.json +++ b/apps/shared/package.json @@ -40,6 +40,7 @@ "firebase-tools": "^13.29.1", "p-limit": "^6.1.0", "random-words": "^2.0.1", + "shared": "^0.2.0", "unzipper": "^0.12.3" }, "devDependencies": {