Skip to content
Open

Fixci #308

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 .github/workflows/actions-dev-kit-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm install --global lerna yarn #install dependencies
- run: lerna bootstrap #prepare packages to be built
- run: npm install --global lerna yarn #install global dependencies
- run: yarn install #install and link depdendencies
- run: ./build.sh #build
- run: yarn run api-ref #test generate /docs
- run: yarn run api-ref-pre-release #test generate /pre-release-docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/actions-dev-kit-deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- run: yarn --version
- run: npm --version

- run: lerna bootstrap # Runs `yarn install` and prepare all the packages in this monorepo for the build
- run: yarn install # install dependencies
- run: yarn run all #build
- run: yarn run api-ref #generate /docs
# Commit /docs folder back to the main branch. GitHub then deploys it automatically to GitHub pages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/actions-dev-kit-release-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- run: npm --version

# Runs `yarn install` and prepare all the packages in this monorepo for the build
- run: lerna bootstrap
- run: yarn install
# Builds and tests all the packages
- run: yarn run all
# Upgrades major|minor|patch version for all the packages even if there's no changes in some or all of them.
Expand All @@ -73,4 +73,4 @@ jobs:
# Publishes ADK packages to CodeArtifact
- run: lerna publish from-package --yes
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
lerna bootstrap
yarn install
yarn run all
1 change: 0 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"lerna": "3.15.0",
"npmClient": "yarn",
"useWorkspaces": true,
"packages": [
"packages/*",
"packages/codecatalyst-entities/*"
Expand Down