We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ed8401 commit 87a973dCopy full SHA for 87a973d
.github/workflows/ci.yml
@@ -12,11 +12,16 @@ env:
12
HUSKY: 0
13
14
jobs:
15
- ci:
16
- name: CI
+ check:
+ name: Run ${{ matrix.script }} code check
17
runs-on: ubuntu-latest
18
timeout-minutes: 15
19
20
+ strategy:
21
+ fail-fast: true
22
+ matrix:
23
+ script: [format, lint]
24
+
25
steps:
26
- name: Checkout repo
27
uses: actions/checkout@v4
@@ -34,6 +39,6 @@ jobs:
34
39
shell: bash
35
40
run: pnpm install --frozen-lockfile
36
41
37
- - name: Format
42
+ - name: Run ${{ matrix.script }}
38
43
run: |
- pnpm run format
44
+ pnpm run ${{ matrix.script }}
0 commit comments