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