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 9ee652b commit 46c3adaCopy full SHA for 46c3ada
.github/workflows/ci.yml
@@ -12,10 +12,15 @@ 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
+ timeout-minutes: 20
19
+
20
+ strategy:
21
+ fail-fast: true
22
+ matrix:
23
+ script: [format, lint]
24
25
steps:
26
- name: Checkout repo
@@ -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