-
Notifications
You must be signed in to change notification settings - Fork 59
80 lines (74 loc) · 1.88 KB
/
test-deploy-e2e.yaml
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
name: Deployed Environments - SDK E2E Tests
on:
workflow_dispatch:
inputs:
environment:
description: 'Target environment'
type: choice
required: true
options:
- 'dev'
- 'staging'
- 'live'
network:
description: 'Target network'
type: choice
required: true
options:
- 'preview'
- 'preprod'
- 'sanchonet'
- 'mainnet'
cluster:
description: 'Target cluster'
type: choice
required: true
options:
- any
- eu-central-1
- us-east-2
level:
description: 'Log level'
type: choice
required: true
options:
- fatal
- error
- warn
- info
- debug
- trace
jobs:
build_and_test:
strategy:
matrix:
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v3
- name: Generate .env file
working-directory: ./packages/e2e/
env:
CLUSTER: ${{ inputs.cluster }}
ENVIRONMENT: ${{ inputs.environment }}
MNEMONIC: ${{ secrets.MNEMONIC }}
NETWORK: ${{ inputs.network }}
run: |
./src/scripts/generate-dotenv.sh
- name: 🧰 Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.12.0
- name: 🔨 Build
run: |
false
yarn install --immutable --inline-builds --mode=skip-build
yarn build:cjs
docker build --no-cache .
env:
NODE_OPTIONS: '--max_old_space_size=8192'
- name: 🔬 Test - e2e - wallet
run: |
TL_DEPTH=0 TL_LEVEL=${{ inputs.level }} yarn workspace @cardano-sdk/e2e test:wallet-real-ada
shell: bash