fix: CI: Run build and lint together since lint depends on build now.
This commit is contained in:
parent
36b0070b71
commit
1f2fb823a3
1 changed files with 3 additions and 12 deletions
15
.github/workflows/ci.yml
vendored
15
.github/workflows/ci.yml
vendored
|
|
@ -71,21 +71,15 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- runtime: nodegs
|
|
||||||
task: build
|
|
||||||
command: pnpm build
|
|
||||||
- runtime: node
|
- runtime: node
|
||||||
task: tsgo
|
task: tsgo
|
||||||
command: pnpm tsgo
|
command: pnpm tsgo
|
||||||
- runtime: node
|
- runtime: node
|
||||||
task: lint
|
task: lint
|
||||||
command: pnpm lint
|
command: pnpm build && pnpm lint
|
||||||
- runtime: node
|
- runtime: node
|
||||||
task: test
|
task: test
|
||||||
command: pnpm canvas:a2ui:bundle && pnpm test
|
command: pnpm canvas:a2ui:bundle && pnpm test
|
||||||
- runtime: node
|
|
||||||
task: build
|
|
||||||
command: pnpm build
|
|
||||||
- runtime: node
|
- runtime: node
|
||||||
task: protocol
|
task: protocol
|
||||||
command: pnpm protocol:check
|
command: pnpm protocol:check
|
||||||
|
|
@ -203,14 +197,11 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- runtime: node
|
- runtime: node
|
||||||
task: lint
|
task: build & lint
|
||||||
command: pnpm lint
|
command: pnpm build && pnpm lint
|
||||||
- runtime: node
|
- runtime: node
|
||||||
task: test
|
task: test
|
||||||
command: pnpm canvas:a2ui:bundle && pnpm test
|
command: pnpm canvas:a2ui:bundle && pnpm test
|
||||||
- runtime: node
|
|
||||||
task: build
|
|
||||||
command: pnpm build
|
|
||||||
- runtime: node
|
- runtime: node
|
||||||
task: protocol
|
task: protocol
|
||||||
command: pnpm protocol:check
|
command: pnpm protocol:check
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue