Skip to content

Commit e4287a6

Browse files
committed
chore: fix scripts
1 parent fea5553 commit e4287a6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: .github/workflows/deploy-preview.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: pnpm build
4242

4343
- name: validate openapi
44-
run: pnpm run validate-openapi
44+
run: pnpm run lint:openapi
4545

4646
- name: lint
4747
run: pnpm run lint

Diff for: .github/workflows/deploy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: pnpm build
4141

4242
- name: validate openapi
43-
run: pnpm run validate-openapi
43+
run: pnpm run lint:openapi
4444

4545
- name: lint
4646
run: pnpm run lint

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"test": "pnpm vitest --run",
1212
"test:watch": "pnpm vitest",
1313
"lint": "eslint .",
14-
"lint:spectral": "pnpm run build:openapi && spectral lint ./node_modules/.openapi/openapi.json",
14+
"lint:openapi": "pnpm run build:openapi && spectral lint ./node_modules/.openapi/openapi.json",
1515
"typecheck": "tsc --noEmit"
1616
},
1717
"dependencies": {

0 commit comments

Comments
 (0)