fixed conditional job trigger
This commit is contained in:
parent
10f9549279
commit
def42af9c6
2
.github/workflows/ci.yaml
vendored
2
.github/workflows/ci.yaml
vendored
|
@ -32,7 +32,7 @@ jobs:
|
|||
name: Language build and test
|
||||
runs-on: ubuntu-latest
|
||||
needs: pre_check
|
||||
if: ${{ needs.pre_check.outputs.should_skip_lang != 'true' }}
|
||||
if: ${{ needs.pre_check.outputs.should_skip_lang != 'true' || needs.pre_check.outputs.should_skip_components != 'true' }}
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
|
|
@ -9,7 +9,7 @@ yarn
|
|||
yarn build
|
||||
yarn bundle
|
||||
```
|
||||
If you've otherwise done this recently you can skip those.
|
||||
If you've otherwise done this recently you can skip those.
|
||||
|
||||
Then, you can install dependencies
|
||||
``` sh
|
||||
|
|
Loading…
Reference in New Issue
Block a user