-
Notifications
You must be signed in to change notification settings - Fork 6
60 lines (58 loc) · 2.3 KB
/
e2e-template-macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: E2E Template App (macOS)
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-template-macos:
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.label.name == 'e2e-template-macos' || 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
run: |
cd packages/template-starter && yarn build:macos-test
- name: E2E
run: |
cd packages/template-starter && yarn e2e:macos
# Commented because e2e tests would fail due to minion issues
# - name: Post message to Slack via Webhook
# if: ${{ github.event_name == 'push' && failure() }}
# uses: slackapi/[email protected]
# with:
# payload: |
# {
# "text": "<!here> *Template macOS 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> *Template macOS 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 }}