fixed conditional job trigger

This commit is contained in:
Quinn Dougherty 2022-03-23 20:11:27 -04:00
parent 10f9549279
commit def42af9c6
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ jobs:
name: Language build and test name: Language build and test
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: pre_check 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: defaults:
run: run:
shell: bash shell: bash

View File

@ -9,7 +9,7 @@ yarn
yarn build yarn build
yarn bundle 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 Then, you can install dependencies
``` sh ``` sh