Skip to content

Commit 0dbcfb6

Browse files
committed
chore: update ci configuration to run lint and build processes synchronously
1 parent 51257f4 commit 0dbcfb6

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,19 @@ concurrency:
99

1010
jobs:
1111
ci:
12-
name: ${{ matrix.job }}
12+
name: Lint & Build
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 10
1515

16-
strategy:
17-
matrix:
18-
job: [lint, build]
19-
2016
steps:
2117
- name: Checkout
2218
uses: actions/checkout@v4
2319

2420
- name: Setup
2521
uses: commencis/js-toolkit/.github/actions/setup@main
2622

27-
- name: Run ${{ matrix.job }}
28-
run: pnpm run ${{ matrix.job }}
23+
- name: Review
24+
run: pnpm run ci:review
25+
26+
- name: Build
27+
run: pnpm run build

0 commit comments

Comments
 (0)