-
Notifications
You must be signed in to change notification settings - Fork 25
128 lines (104 loc) · 3.08 KB
/
ci.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
name: CI (build, lint, test)
# All pull requests, and
# Workflow dispatch allows you to run this workflow manually from the Actions tab
on:
pull_request:
workflow_dispatch:
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
jobs:
build:
name: Build & unit test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
show-progress: false
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint monorepo root
run: pnpm run lint
- name: Build, lint, test all packages
run: pnpm turbo lint build test
integration-tests:
name: INT - ${{ matrix.package }}
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
package: ['@kadena/client', '@kadena/client-utils']
services:
devnet:
image: kadena/devnet
options:
--memory 7g --cpus 2 --health-cmd "curl --verbose --fail
http://localhost:8080/info || exit 1"
ports:
- 8080:8080
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
show-progress: false
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: run integration tests
run: pnpm run test:integration --filter ${{ matrix.package }}
end-to-end-tests:
name: E2E - ${{ matrix.package }}
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
package: ['@kadena/tools']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
show-progress: false
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Install browsers
run: pnpm --filter @kadena-dev/e2e-tests run install:chromium
# Disable remote caching for this step, otherwise env variables will not be used.
- name: build dApp
run: pnpm --filter ${{ matrix.package }}... build
env:
# Dummy values for faucet transactions.
FAUCET_PUBLIC_KEY: 782127638ab9cc8fa8598ff0120464ceef6f367ddcd616b47afffbdb175dcc5e
FAUCET_PRIVATE_KEY: 93fd78bd1e79a3b593d4732b76050b418aeefa5e4e6ea80f351b4c3a5b0dd19f
- name: Run end-to-end tests
run: pnpm run test:e2e -- --project=${{ matrix.package }}
env:
CI: true
TESTOBJECT: ${{ matrix.package }}
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: packages/tools/e2e-tests/playwright-report/
retention-days: 30