diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad06dd8..1cbef34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,6 @@ on: - main - dev pull_request: - # cancel in-progress runs on new commits to same PR (gitub.event.number) concurrency: group: ${{ github.workflow }}-${{ github.event.number || github.sha }} @@ -24,7 +23,7 @@ jobs: with: bun-version-file: .tool-versions run_install: true - - run: bun check + - run: bun run --filter "./packages/*" check Tests: runs-on: ubuntu-22.04 @@ -34,4 +33,4 @@ jobs: with: bun-version-file: .tool-versions run_install: true - - run: bun test \ No newline at end of file + - run: bun run --filter "./packages/*" test \ No newline at end of file