[Frontend][Version][Update] lexicon version v2.2.0 #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
env: | |
LIST_REPO_E2E_TEST: ('lexicon','lexicon-kodefox') # list of repo name which want run e2e test | |
jobs: | |
# get-env job is run to get env using output because we cannot use env context outside steps if: env.LIST_REPO_E2E_TEST | |
# https://github.com/actions/runner/issues/2372#issuecomment-1518528105 | |
get-env: | |
runs-on: ubuntu-latest | |
outputs: | |
LIST_REPO: ${{ env.LIST_REPO_E2E_TEST }} | |
steps: | |
- run: echo "null" | |
path-filters: | |
needs: [get-env] | |
if: contains(needs.get-env.outputs.LIST_REPO,github.event.repository.name) | |
uses: ./.github/workflows/path-filters.yml | |
test: | |
uses: ./.github/workflows/test.yml | |
# Disable Detox tests because they require a connection with a Build Jet account. | |
# To enable these tests, ensure your repository is connected to Build Jet: https://buildjet.com/for-github-actions | |
# e2e-test: | |
# needs: [path-filters, test] | |
# if: needs.path-filters.outputs.frontendSrc-changes == 'true' && contains(needs.get-env.outputs.LIST_REPO,github.event.repository.name) | |
# uses: ./.github/workflows/e2e-test-android.yml | |
# secrets: inherit |