We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51257f4 commit 0dbcfb6Copy full SHA for 0dbcfb6
.github/workflows/ci.yaml
@@ -9,20 +9,19 @@ concurrency:
9
10
jobs:
11
ci:
12
- name: ${{ matrix.job }}
+ name: Lint & Build
13
runs-on: ubuntu-latest
14
timeout-minutes: 10
15
16
- strategy:
17
- matrix:
18
- job: [lint, build]
19
-
20
steps:
21
- name: Checkout
22
uses: actions/checkout@v4
23
24
- name: Setup
25
uses: commencis/js-toolkit/.github/actions/setup@main
26
27
- - name: Run ${{ matrix.job }}
28
- run: pnpm run ${{ matrix.job }}
+ - name: Review
+ run: pnpm run ci:review
+
+ - name: Build
+ run: pnpm run build
0 commit comments