-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (70 loc) · 2.34 KB
/
live-ui-tests.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: UI tests (live)
on:
workflow_dispatch:
schedule:
- cron: '0 */12 * * *'
env:
NEW_RELIC_APP_NAME: ${{ secrets.NEW_RELIC_APP_NAME }}
NEW_RELIC_LICENSE_KEY: ${{ secrets.NEW_RELIC_LICENSE_KEY }}
NEXT_PUBLIC_URL: ${{ secrets.NEXT_PUBLIC_URL }}
NEXT_PUBLIC_SANITY_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_SANITY_PROJECT_ID }}
PNPM_VERSION: 9.12.3
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
NEXT_PUBLIC_SENTRY_DSN: ${{ secrets.NEXT_PUBLIC_SENTRY_DSN }}
jobs:
test:
name: e2e live
runs-on: ubuntu-latest
timeout-minutes: 20
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: install dependencies
uses: ./.github/actions/install
- name: UI tests prod
uses: ./.github/actions/ui-test
with:
target: e2e-prod
discord-fail-message:
runs-on: ubuntu-latest
if: failure()
needs: test
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: get-npm-version
id: package-version
uses: martinbeentjes/npm-get-version-action@main
with:
path: apps/lambda
- name: Get current time
id: current-time
run: echo "TIME=$(date -u)" >> $GITHUB_ENV
- name: Get deployedAt from lhowsam.com
id: fetch-deployedAt
run: |
response=$(curl -s https://lhowsam.com/api/version)
deployedAt=$(echo $response | jq -r '.deployedAt')
echo "DEPLOYED_AT=$deployedAt" >> $GITHUB_ENV
- name: Discord fail notification
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_LIVE_WEBHOOK_URL }}
uses: Ilshidur/action-discord@master
with:
args: |
🚨 Live UI tests lhowsam.com failed! 🚨
**Failure Time**: ${{ env.TIME }}
**Last deployed at**: ${{ env.DEPLOYED_AT }}
**Vercel Status**: https://www.vercel-status.com
**CF status**: https://www.cloudflarestatus.com