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 8aa2412 commit 799e156Copy full SHA for 799e156
.github/workflows/ci.yml
@@ -9,25 +9,19 @@ on:
9
- main
10
11
jobs:
12
- prepare:
13
- name: Prepare
14
- runs-on: ubuntu-latest
15
- if: ${{ !startsWith(github.head_ref, 'release/v') }}
16
-
17
lint:
18
name: Lint App
19
uses: ./.github/workflows/lint.yml
20
- needs: prepare
+ if: ${{ !startsWith(github.head_ref, 'release/v') }}
21
22
tests:
23
name: Tests
24
uses: ./.github/workflows/test.yml
25
needs: lint
26
27
build:
28
name: Build
29
uses: ./.github/workflows/build.yml
30
needs: tests
31
32
33
0 commit comments