Skip to content

Commit

Permalink
chore: fix publish all job
Browse files Browse the repository at this point in the history
  • Loading branch information
atomrc committed Sep 6, 2023
1 parent e979682 commit fb09100
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/publish_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ jobs:
- name: Install JS dependencies
run: yarn --immutable

- name: Build
run: yarn dist

- name: Test
if: ${{ inputs.test }}
run: yarn test:all
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"new-publish-beta": "lerna publish from-package --dist-tag beta --preid ${0}",
"beta-release": "yarn new-version-beta ${0} && yarn new-publish-beta ${0}",
"test": "lerna run build --include-dependencies --since && lerna run test --since --parallel",
"test:all": "lerna run build && lerna run test",
"test:all": "lerna run test",
"test:coverage": "lerna run test:coverage",
"prepare": "husky install"
},
Expand Down

0 comments on commit fb09100

Please sign in to comment.