one last set of choices for ci.yml
This commit is contained in:
parent
188e508f06
commit
018c5f7ca6
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
|||
name: Language lint
|
||||
runs-on: ubuntu-latest
|
||||
needs: pre_check
|
||||
if: $${{ needs.pre_check.outputs.should_skip_lang != 'true' }}
|
||||
if: ${{ !needs.pre_check.outputs.should_skip_lang }}
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
@ -50,8 +50,8 @@ jobs:
|
|||
lang-build-test:
|
||||
name: Language build and test
|
||||
runs-on: ubuntu-latest
|
||||
needs: lang-lint
|
||||
# if: $${{ needs.pre_check.outputs.should_skip_lang != 'true' }}
|
||||
needs: pre_check
|
||||
if: ${{ !needs.pre_check.outputs.should_skip_lang }}
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
@ -71,7 +71,7 @@ jobs:
|
|||
name: Components build and test
|
||||
runs-on: ubuntu-latest
|
||||
needs: pre_check
|
||||
if: ${{ (needs.pre_check.outputs.should_skip_components != 'true') || (needs.pre_check.outputs.should_skip_lang != 'true') }}
|
||||
if: ${{ (!needs.pre_check.outputs.should_skip_components) || (!needs.pre_check.outputs.should_skip_lang) }}
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
@ -91,7 +91,7 @@ jobs:
|
|||
name: Website build
|
||||
runs-on: ubuntu-latest
|
||||
needs: pre_check
|
||||
if: ${{ (needs.pre_check.outputs.should_skip_website != 'true') || (needs.pre_check.outputs.should_skip_lang != 'true') || (needs.pre_check.outputs.should_skip_components != 'true') }}
|
||||
if: ${{ (!needs.pre_check.outputs.should_skip_website) || (!needs.pre_check.outputs.should_skip_lang) || (!needs.pre_check.outputs.should_skip_components) }}
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
|
Loading…
Reference in New Issue
Block a user