diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index a1e17173..b0e472e3 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -18,5 +18,5 @@ jobs: - run: npm ci - run: npm run check - run: npm test - - run: npm run compile + - run: npm run compile --workspaces - run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9d53103f..df96a14b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: with: node-version: lts/* - run: npm ci - - run: npm run compile + - run: npm run compile --workspaces - run: npm run release env: # Use a personal access token (PAT) so we can trigger downstream workflows (deploy.yml). diff --git a/package.json b/package.json index a3890030..df8111f1 100644 --- a/package.json +++ b/package.json @@ -20,8 +20,6 @@ "typescript": "^5.5.4" }, "scripts": { - "clean": "npm run clean --workspaces", - "compile": "npm run compile --workspaces", "check": "gts check", "fix": "gts fix", "commitlint": "commitlint --edit $1",