Skip to content

Commit 90e10fe

Browse files
committed
chore: Use @aklinker1/check to simplify checks
1 parent 0d88099 commit 90e10fe

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

.github/workflows/validate.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,13 @@ on:
77
- main
88

99
jobs:
10-
formatting:
11-
runs-on: ubuntu-22.04
12-
steps:
13-
- uses: actions/checkout@v4
14-
- uses: ./.github/actions/setup
15-
- run: bun format:check
16-
type-check:
10+
check:
1711
runs-on: ubuntu-22.04
1812
steps:
1913
- uses: actions/checkout@v4
2014
- uses: ./.github/actions/setup
2115
- run: bun generate:types
22-
- run: bun compile
16+
- run: bun check
2317
tests:
2418
runs-on: ubuntu-22.04
2519
steps:

bun.lockb

1.44 KB
Binary file not shown.

package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@
1111
"docker:build:amd": "bun docker:build --platform linux/amd64",
1212
"docker:push": "bun docker:build --platform linux/amd64 && docker push aklinker1/store-api",
1313
"postinstall": "simple-git-hooks",
14-
"format": "prettier --write .",
15-
"format:check": "prettier --check .",
16-
"compile": "tsc --noEmit"
14+
"check": "check"
1715
},
1816
"dependencies": {
1917
"consola": "^3.2.3",
@@ -23,6 +21,7 @@
2321
"picocolors": "^1.0.0"
2422
},
2523
"devDependencies": {
24+
"@aklinker1/check": "^1.2.0",
2625
"bun-types": "latest",
2726
"code-block-writer": "^12.0.0",
2827
"lint-staged": "^15.2.2",

0 commit comments

Comments
 (0)