forked from deriv-com/copy-trading
-
Notifications
You must be signed in to change notification settings - Fork 0
146 lines (126 loc) · 3.99 KB
/
deploy.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
name: Deploy to Production
on:
push:
branches: ['main']
workflow_dispatch:
inputs:
environment:
description: 'Environment to deploy to'
required: true
default: 'production'
type: choice
options:
- production
- staging
permissions:
contents: read
pages: write
id-token: write
deployments: write
# Prevent concurrent deployments
concurrency:
group: "pages"
cancel-in-progress: false # Don't cancel production deployments
env:
NODE_ENV: production
jobs:
validate:
name: Validate Production Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: |
npm ci
id: npm-cache
env:
cache-name: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-prod-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-prod-${{ env.cache-name }}-
${{ runner.os }}-prod-
${{ runner.os }}-
- name: Production Build Test
run: npm run build
env:
VITE_APP_ENV: production
- name: Run Tests
run: npm test -- --coverage
- name: Cache build validation
uses: actions/cache@v3
with:
path: dist
key: ${{ runner.os }}-prod-build-${{ github.sha }}
deploy:
name: Deploy to Production
needs: validate
environment:
name: ${{ github.event.inputs.environment || 'production' }}
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
env:
VITE_APP_ENV: production
NODE_ENV: production
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: './dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
- name: Create Deployment Status
if: always()
uses: actions/github-script@v6
with:
script: |
const { owner, repo } = context.repo;
const environment = '${{ github.event.inputs.environment || 'production' }}';
const run_url = `https://github.com/${owner}/${repo}/actions/runs/${context.runId}`;
const status = `🚀 Deployment to ${environment} ${steps.deployment.outcome}`;
await github.rest.repos.createDeploymentStatus({
owner: owner,
repo: repo,
deployment_id: context.payload.deployment?.id,
state: steps.deployment.outcome === 'success' ? 'success' : 'failure',
environment_url: '${{ steps.deployment.outputs.page_url }}',
log_url: run_url,
description: status
});
- name: Notify on Failure
if: failure()
uses: actions/github-script@v6
with:
script: |
const { owner, repo } = context.repo;
const run_url = `https://github.com/${owner}/${repo}/actions/runs/${context.runId}`;
const issue = await github.rest.issues.create({
owner: owner,
repo: repo,
title: '❌ Production Deployment Failed',
body: `Deployment to production failed.\n\n[View Details](${run_url})`,
labels: ['deployment', 'bug']
});