update rnv version + deps #276
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: E2E Harness App (tvOS) | |
defaults: | |
run: | |
shell: zsh -l {0} | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- 'release/**' | |
paths-ignore: | |
- 'docs/**' | |
- '**/README.md' | |
- '**/lerna.json' | |
- '**/metadata.json' | |
- '**/renative.json' | |
- '**/package.json' | |
pull_request: | |
types: [labeled] | |
jobs: | |
e2e-harness-tvos: | |
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.label.name == 'e2e-harness-tvos' || github.event.label.name == 'e2e' }} | |
runs-on: [self-hosted, macos] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup | |
run: | | |
security unlock-keychain -p ${{ secrets.FLEXN_KEYCHAIN_PASSWORD }} Flexn.keychain | |
yarn config set network-timeout 300000 | |
- name: Bootstrap | |
run: | | |
yarn bootstrap-clean | |
- name: Build | |
id: build | |
run: | | |
cd packages/app-harness && yarn build:tvos-test | |
- name: E2E Dynamic Rows | |
if: (success() || failure()) && steps.build.outcome == 'success' | |
run: | | |
cd packages/app-harness && yarn e2e:tvos --spec ./test/specs/DR1.cjs | |
- name: E2E Grid | |
if: (success() || failure()) && steps.build.outcome == 'success' | |
run: | | |
cd packages/app-harness && yarn e2e:tvos --spec ./test/specs/G1.cjs | |
# skipped because on tvos list tests take 12 minutes | |
# - name: E2E List | |
# if: (success() || failure()) && steps.build.outcome == 'success' | |
# run: | | |
# cd packages/app-harness && yarn e2e:tvos --spec ./test/specs/L1.cjs | |
- name: E2E Next Focus | |
if: (success() || failure()) && steps.build.outcome == 'success' | |
run: | | |
cd packages/app-harness && yarn e2e:tvos --spec ./test/specs/NF1.cjs | |
- name: E2E Prefered Focus | |
if: (success() || failure()) && steps.build.outcome == 'success' | |
run: | | |
cd packages/app-harness && yarn e2e:tvos --spec ./test/specs/PF1.cjs | |
- name: E2E Row | |
if: (success() || failure()) && steps.build.outcome == 'success' | |
run: | | |
cd packages/app-harness && yarn e2e:tvos --spec ./test/specs/R1.cjs | |
- name: E2E Remote Handler | |
if: (success() || failure()) && steps.build.outcome == 'success' | |
run: | | |
cd packages/app-harness && yarn e2e:tvos --spec ./test/specs/RH1.cjs | |
- name: E2E Set Focus | |
if: (success() || failure()) && steps.build.outcome == 'success' | |
run: | | |
cd packages/app-harness && yarn e2e:tvos --spec ./test/specs/SF1.cjs | |
# skipped because on tvos Row on focus blur tests take 10 minutes | |
# - name: E2E Row on focus blur | |
# if: (success() || failure()) && steps.build.outcome == 'success' | |
# run: | | |
# cd packages/app-harness && yarn e2e:tvos --spec ./test/specs/RFB1.cjs | |
# Commented because e2e tests would fail due to harness builds not working and minion issues | |
# - name: Post message to Slack via Webhook | |
# if: ${{ github.event_name == 'push' && failure() }} | |
# uses: slackapi/[email protected] | |
# with: | |
# payload: | | |
# { | |
# "text": "<!here> *Harness tvOS e2e tests FAILED after* <${{ github.event.pull_request.html_url || github.event.head_commit.url }}|push> :alert:", | |
# "blocks": [ | |
# { | |
# "type": "section", | |
# "text": { | |
# "type": "mrkdwn", | |
# "text": "<!here> *Harness tvOS e2e tests FAILED after* <${{ github.event.pull_request.html_url || github.event.head_commit.url }}|push> :alert:" | |
# } | |
# } | |
# ] | |
# } | |
# env: | |
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |