File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,14 @@ jobs:
2929 run : yarn install --immutable
3030
3131 - name : Run tests (if test script exists)
32- run : yarn test
32+ run : yarn workspaces foreach --all --topological --parallel --no-private run test
3333 continue-on-error : true # 테스트 스크립트가 없어도 계속 진행
3434
3535 - name : Build project (if build script exists)
36- run : yarn build
36+ run : yarn workspaces foreach --all --topological --parallel --no-private run build
3737 continue-on-error : true # 빌드 스크립트가 없어도 계속 진행
3838
39+
3940 - name : Bump version & create tag (only on main branch)
4041 if : github.ref == 'refs/heads/main'
4142 run : |
4748
4849 - name : Publish to npm (only on main branch)
4950 if : github.ref == 'refs/heads/main'
50- run : yarn workspaces foreach --recursive --topological --no-private npm publish --access public
51+ run : yarn workspaces foreach --recursive --topological --no-private --from 'spreadsheet-orm' npm publish --access public
5152 env :
5253 NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
You can’t perform that action at this time.
0 commit comments