-
Notifications
You must be signed in to change notification settings - Fork 0
116 lines (111 loc) · 3.8 KB
/
failsafe.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name: Failsafe Page Generation
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# every day 06:00 GMT+8
- cron: '0 10 * * *'
env:
AWS_REGION: ${{ secrets.AWS_REGION }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
jobs:
wait-for-deployment:
uses: ./.github/workflows/vercel-deployment.yml
if: (github.event_name == 'push' || github.event_name == 'pull_request') && (github.actor != 'dependabot[bot]')
secrets:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
failsafe-generation-stage:
name: Failsafe Page Generation (Stage Deployment)
runs-on: macos-12 # use macos for failsafe visual test
if: contains(github.ref, 'refs/pull')
needs: wait-for-deployment
env:
NEXT_PUBLIC_APP_ENV: stage
VERCEL_URL: ${{ needs.wait-for-deployment.outputs.vercel-deployment-url }}
steps:
- name: Checkout project source
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Install dependency
run: npm install --legacy-peer-deps
- name: Run failsafe generation
run: npm run task:failsafe
- name: Install playwright browsers
run: npx playwright install --with-deps
- name: Run failsafe e2e tests
run: npm run test:e2e:failsafe
- uses: actions/upload-artifact@v2
if: always()
with:
name: stage-deployment-failsafe-test-report
path: |
e2e-failsafe-report
artifacts/e2e-test-results
retention-days: 14
failsafe-generation-production:
name: Failsafe Page Generation (Production Deployment)
runs-on: macos-12 # use macos for failsafe visual test
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
needs: wait-for-deployment
env:
NEXT_PUBLIC_APP_ENV: production
steps:
- name: Checkout project source
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Install dependency
run: npm install --legacy-peer-deps
- name: Run failsafe generation
run: npm run task:failsafe
- name: Install playwright browsers
run: npx playwright install --with-deps
- name: Run failsafe e2e tests
run: npm run test:e2e:failsafe
- uses: actions/upload-artifact@v2
if: always()
with:
name: production-deployment-failsafe-test-report
path: |
e2e-failsafe-report
artifacts/e2e-test-results
retention-days: 14
failsafe-generation-production-schedule:
name: Failsafe Page Generation (Production Schedule)
runs-on: macos-12 # use macos for failsafe visual test
# skip waiting for deployment for production schedule generation
if: github.ref == 'refs/heads/main' && github.event_name == 'schedule'
env:
NEXT_PUBLIC_APP_ENV: production
steps:
- name: Checkout project source
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Install dependency
run: npm install --legacy-peer-deps
- name: Run failsafe generation
run: npm run task:failsafe
- name: Install playwright browsers
run: npx playwright install --with-deps
- name: Run failsafe e2e tests
run: npm run test:e2e:failsafe
- uses: actions/upload-artifact@v2
if: always()
with:
name: production-schedule-failsafe-test-report
path: |
e2e-failsafe-report
artifacts/e2e-test-results
retention-days: 14