Skip to content

Commit 3a2a678

Browse files
committed
fix: add lint and check steps to workflows and update ci:update script in package.json
1 parent d56c8ac commit 3a2a678

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
- run: pnpm i
3737
- run: pnpm build
3838
- run: pnpm lint
39+
- run: pnpm check
3940
- run: pnpm test
4041
- run: pnpm ci:package
4142
- run: |

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@ jobs:
3030
- run: pnpm i
3131
- run: pnpm build
3232
- run: pnpm lint
33+
- run: pnpm check
3334
- run: pnpm test
3435
- run: pnpm ci:package

.github/workflows/update.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
cache: "pnpm"
3030
- run: pnpm i
3131
- run: pnpm ci:update
32+
- run: pnpm lint
33+
- run: pnpm check
34+
- run: pnpm test
3235
- name: Check for changes
3336
id: changes
3437
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"check": "turbo check",
77
"ci:package": "turbo run ci:package",
88
"ci:release": "turbo run ci:release",
9-
"ci:update": "turbo run fetch-apis",
9+
"ci:update": "turbo run ci:update",
1010
"ci:version": "changeset version && pnpm install --lockfile-only",
1111
"format": "prettier --write . && biome check --write .",
1212
"lint": "prettier --write . && biome check --write .",

0 commit comments

Comments
 (0)