-
Notifications
You must be signed in to change notification settings - Fork 109
71 lines (69 loc) · 2.45 KB
/
TASKLIST_CARBONISATION.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
name: Check Tasklist Carbonization
on: [push]
jobs:
Exec:
name: Run visual regression
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.40.1
options: --user 1001:1000
steps:
- name: Checkout form-js
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
path: form-js
- name: Checkout Tasklist
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
with:
repository: camunda/tasklist
token: ${{ secrets.ADD_TO_HTO_PROJECT_PAT }}
path: tasklist
ref: "master"
- name: Setup form-js cache
uses: actions/setup-node@d86ebcd40b3cb50b156bfa44dd277faf38282d12
with:
node-version: "20"
cache: "npm"
cache-dependency-path: ./form-js/package-lock.json
- name: Setup Tasklist cache
uses: actions/setup-node@d86ebcd40b3cb50b156bfa44dd277faf38282d12
with:
node-version: "20"
cache: "yarn"
cache-dependency-path: ./tasklist/client/yarn.lock
- name: Install form-js deps
run: npm ci
working-directory: ./form-js
- name: Build form-js
run: npm run build
working-directory: ./form-js
- name: Create form-js-viewer link
run: yarn link
working-directory: ./form-js/packages/form-js-viewer
- name: Link form-js-viewer
run: yarn link "@bpmn-io/form-js-viewer"
working-directory: ./tasklist/client
- name: Create form-js-carbon-styles link
run: yarn link
working-directory: ./form-js/packages/form-js-carbon-styles
- name: Link form-js-carbon-styles
run: yarn link "@bpmn-io/form-js-carbon-styles"
working-directory: ./tasklist/client
- name: Install Tasklist deps
run: yarn
working-directory: ./tasklist/client
- name: Build Tasklist
run: yarn build:visual-regression
working-directory: ./tasklist/client
- name: Start server
working-directory: ./tasklist/client
run: yarn start:visual-regression &
- name: Run Playwright tests
working-directory: ./tasklist/client
run: yarn playwright form-js-integration
- uses: actions/upload-artifact@c320f57948d137eb8c7f8e781ddcc0f61b04e834
if: always()
with:
name: playwright-report
path: ./tasklist/client/playwright-report/
retention-days: 30