-
Notifications
You must be signed in to change notification settings - Fork 6
279 lines (232 loc) · 7.68 KB
/
tests.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
name: Tests
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
static-analysis:
name: Static Analysis
runs-on: ubuntu-latest
permissions:
contents: write
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
- name: Install dependencies
run: pnpm i --frozen-lockfile --prefer-offline
- name: Build packages
run: npx turbo run build
- name: Lint code
run: pnpx turbo run lint:eslint -- --fix
- name: Lint css
run: pnpx turbo run lint:css -- --fix --custom-formatter @csstools/stylelint-formatter-github
- name: Check formatting
run: pnpx turbo run format
- name: Perform typecheck
run: pnpx turbo run lint:types
- name: Commit changes
if: always()
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Apply code formatting and fixable ESLint issues"
unit-tests:
name: Unit tests
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
FIGMA_TOKEN: "FIGMA_TOKEN"
ADMIN_TOKENS_FILE_KEY: "ADMIN_TOKENS_FILE_KEY"
PRIMITIVE_TOKENS_FILE_KEY: "PRIMITIVE_TOKENS_FILE_KEY"
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: unit
run: pnpx turbo run test:unit
circular-dependencies:
name: Check for circular dependencies (Madge)
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: madge
run: pnpm --filter @shopware-ag/meteor-admin-sdk run circular-dependencies
playwright-run:
name: Playwright Integration Tests
timeout-minutes: 20
runs-on: ubuntu-latest
needs:
- circular-dependencies
- unit-tests
- static-analysis
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: Install Playwright
run: npx playwright install
- name: Build packages
run: npx turbo run build
- name: Run e2e tests
run: pnpx turbo run test:e2e
- uses: actions/upload-artifact@v4
if: always()
with:
name: nuxt-app--playwright-test-results
path: examples/nuxt-app/test-results/
- uses: actions/upload-artifact@v4
if: always()
with:
name: meteor-admin-sdk--playwright-test-results
path: packages/admin-sdk/playwright-report/
tested-versions:
name: tested-versions
runs-on: ubuntu-latest
outputs:
first-version: ${{ steps.versions.outputs.first-version }}
latest-version: ${{ steps.versions.outputs.latest-version }}
lts-first-version: ${{ steps.versions.outputs.lts-first-version }}
lts-latest-version: ${{ steps.versions.outputs.lts-latest-version }}
steps:
- name: Generate versions
id: versions
uses: shopware/github-actions/versions@main
# ats:
# name: Acceptance tests
# timeout-minutes: 20
# runs-on: ubuntu-latest
# needs:
# - circular-dependencies
# - unit-tests
# - static-analysis
# - tested-versions
# env:
# TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
# TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
# TZ: Europe/Berlin
# strategy:
# fail-fast: false
# matrix:
# shopware-version:
# # TODO: add again with next major, does not work right now because 6.5 does not support vue3
# # - ${{ needs.tested-versions.outputs.lts-latest-version }}
# - ${{ needs.tested-versions.outputs.first-version }}
# - trunk
# steps:
# - name: Setup shopware
# uses: shopware/setup-shopware@main
# with:
# path: shopware/
# install: "true"
# install-admin: "true"
# install-storefront: "true"
# shopware-version: "${{ matrix.shopware-version }}"
# env: dev
# - name: Checkout
# uses: actions/checkout@v4
# with:
# path: meteor/
# - name: Symlink plugin
# working-directory: shopware/custom/plugins/
# run: ln -s ../../../meteor/examples/admin-sdk-plugin TestPlugin
# - name: Activate TestPlugin
# working-directory: shopware/
# run: |
# bin/console plugin:refresh
# bin/console plugin:install --activate TestPlugin
# bin/console cache:clear
# - uses: pnpm/action-setup@v3
# with:
# version: 9
# - name: Setup Node.js
# uses: actions/setup-node@v4
# with:
# node-version: "20"
# cache: "pnpm"
# cache-dependency-path: "**/pnpm-lock.yaml"
# - name: Install dependencies
# working-directory: meteor/
# run: pnpm install --frozen-lockfile --prefer-offline
# - name: Build packages
# working-directory: meteor/
# run: npx turbo run build
# - name: Build assets
# working-directory: shopware/
# run: |
# composer run build:js
# bin/console assets:install
# - name: Start webserver
# working-directory: shopware/
# run: symfony server:start --allow-http --no-tls --port=8000 -d
# - name: Install playwright
# working-directory: meteor/examples/admin-sdk-plugin/tests/acceptance/
# run: |
# pnpm install --frozen-lockfile --prefer-offline
# npx playwright install --with-deps
# - name: Run Playwrigth
# working-directory: meteor/examples/admin-sdk-plugin/tests/acceptance/
# run: npx playwright test --retries=2 --reporter=github --trace=on-first-retry --project chromium
# - uses: actions/upload-artifact@v4
# if: always()
# with:
# name: ats-test-results-${{ matrix.project }}
# path: meteor/examples/admin-sdk-plugin/tests/acceptance/test-results/
# - uses: actions/upload-artifact@v4
# if: always()
# with:
# name: ats-report-${{ matrix.project }}
# path: meteor/examples/admin-sdk-plugin/tests/acceptance/playwright-report/