run check on all
This commit is contained in:
parent
2b2149a596
commit
a07c023200
1 changed files with 2 additions and 3 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
|
@ -6,7 +6,6 @@ on:
|
||||||
- main
|
- main
|
||||||
- dev
|
- dev
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
# cancel in-progress runs on new commits to same PR (gitub.event.number)
|
# cancel in-progress runs on new commits to same PR (gitub.event.number)
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
|
group: ${{ github.workflow }}-${{ github.event.number || github.sha }}
|
||||||
|
|
@ -24,7 +23,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
bun-version-file: .tool-versions
|
bun-version-file: .tool-versions
|
||||||
run_install: true
|
run_install: true
|
||||||
- run: bun check
|
- run: bun run --filter "./packages/*" check
|
||||||
|
|
||||||
Tests:
|
Tests:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
|
@ -34,4 +33,4 @@ jobs:
|
||||||
with:
|
with:
|
||||||
bun-version-file: .tool-versions
|
bun-version-file: .tool-versions
|
||||||
run_install: true
|
run_install: true
|
||||||
- run: bun test
|
- run: bun run --filter "./packages/*" test
|
||||||
Loading…
Add table
Reference in a new issue