Skip to content

Commit

Permalink
Try linking up the packages in this repo during CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
filmaj committed Oct 5, 2023
1 parent 6e8a31e commit 8fade6b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,11 @@ jobs:
working-directory: ${{ matrix.package }}
run: |
npm install || npm list
# depending on which package we are testing, also npm link up other dependent packages
case "$PWD" in
*/webhook) npm link ../types;;
*/web-api) npm link ../types && npm link ../logger;;
# TODO: add oauth and socket-mode here once those packages have new major versions released
*) ;; # default
esac
npm test

0 comments on commit 8fade6b

Please sign in to comment.