-
Notifications
You must be signed in to change notification settings - Fork 5
150 lines (121 loc) · 4.49 KB
/
test.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
147
148
149
150
name: test
on:
pull_request:
branches:
- main
types:
- opened
- reopened
- ready_for_review
- synchronize
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout Code
uses: actions/checkout@v3
- name: ⚒️ Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: 👀 Env
run: |
echo "Event name: ${{ github.event_name }}"
echo "Git ref: ${{ github.ref }}"
echo "GH actor: ${{ github.actor }}"
echo "SHA: ${{ github.sha }}"
VER=`node --version`; echo "Node ver: $VER"
VER=`npm --version`; echo "npm ver: $VER"
- name: 📥 Install Backend and Sources
uses: ./.github/actions/backend
# Currently failing
# - name: 🔭 Run CDK Unit Tests
# run: npm run test
# working-directory: infrastructure
deploy-dev:
name: Deploy Dev
runs-on: ubuntu-latest
needs: [unit-tests]
permissions:
actions: write
contents: read
id-token: write
steps:
- name: 🚫 Cancel Previous Runs
uses: styfle/[email protected]
- name: ⬇️ Checkout Code
uses: actions/checkout@v3
- name: ⚒️ Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: 🔑 Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{ secrets.AWS_SERVICE_ROLE_DEV }}
aws-region: us-east-1
- name: 👀 Env
run: |
echo "Event name: ${{ github.event_name }}"
echo "Git ref: ${{ github.ref }}"
echo "GH actor: ${{ github.actor }}"
echo "SHA: ${{ github.sha }}"
VER=`node --version`; echo "Node ver: $VER"
VER=`npm --version`; echo "npm ver: $VER"
- name: 📥 Install Backend and Sources
uses: ./.github/actions/backend
- name: 📥 Install Frontend
uses: ./.github/actions/frontend
- name: 🗒️ Create aws-exports.js
run: |
touch aws-exports.js
echo const awsmobile = { aws_project_region: \'${{ secrets.CDK_DEFAULT_REGION }}\', aws_cognito_region: \'${{ secrets.CDK_DEFAULT_REGION }}\', aws_user_pools_id: \'${{secrets.COGNITO_USERPOOL_ID_DEV}}\', aws_user_pools_web_client_id: \'${{ secrets.COGNITO_WEB_CLIENT_ID_DEV }}\', mandatorySignIn: true, aws_appsync_graphqlEndpoint: \'${{ secrets.APPSYNC_ENDPOINT_DEV }}\', aws_appsync_region: \'${{ secrets.CDK_DEFAULT_REGION }}\', aws_appsync_authenticationType: \'AMAZON_COGNITO_USER_POOLS\' } >> aws-exports.js
echo export default awsmobile >> aws-exports.js
working-directory: frontend/app
- name: 🗒️ Create constants.ts
run: |
touch constants.ts
working-directory: frontend
- name: 🏗 Build Frontend
run: npm run build-frontend
working-directory: infrastructure
- name: 🗒️ Create .env
run: |
touch .env
echo DLQ_NOTIFICATIONS=${{ secrets.DLQ_NOTIFICATIONS }} >> .env
working-directory: infrastructure
- name: 🚀 Deploy Backend
run: npm run deploy dev
working-directory: infrastructure
- name: 🚀 Deploy Frontend
run: npx sst deploy --stage dev
working-directory: frontend
integration-tests:
name: Integration Tests
runs-on: ubuntu-latest
needs: [deploy-dev]
steps:
- name: ⬇️ Checkout Code
uses: actions/checkout@v3
- name: ⚒️ Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: 👀 Env
run: |
echo "Event name: ${{ github.event_name }}"
echo "Git ref: ${{ github.ref }}"
echo "GH actor: ${{ github.actor }}"
echo "SHA: ${{ github.sha }}"
VER=`node --version`; echo "Node ver: $VER"
VER=`npm --version`; echo "npm ver: $VER"
- name: 📥 Install CDK Dependencies
run: npm install
working-directory: infrastructure
- name: 📥 Install Frontend
uses: ./.github/actions/frontend
# TODO Deploy backend and frontend
# - name: Run Cypress Frontend Tests
# run: npx cypress run --env username=${{ secrets.CYPRESS_USERNAME }},password=${{ secrets.CYPRESS_PASSWORD }}
# working-directory: frontend/container