-
Notifications
You must be signed in to change notification settings - Fork 3
110 lines (96 loc) · 2.34 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
name: Test
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set conda environment
uses: mamba-org/setup-micromamba@main
with:
environment-name: cockle
environment-file: environment-dev.yml
init-shell: bash
cache-downloads: true
- name: Lint
run: |
npm install
npm run lint:check
test:
name: 'End-to-end tests ${{ matrix.os }}'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- name: Checkout source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set conda environment
uses: mamba-org/setup-micromamba@main
with:
environment-name: cockle
environment-file: environment-dev.yml
init-shell: bash
cache-downloads: true
- name: Build
run: |
npm install
npm run build
- name: Run tests
working-directory: test
run: |
npm install
npx playwright install --with-deps chromium
npm run build
npm run test
ui-test:
name: Visual tests
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set conda environment
uses: mamba-org/setup-micromamba@main
with:
environment-name: cockle
environment-file: environment-dev.yml
init-shell: bash
cache-downloads: true
- name: Build
run: |
npm install
npm run build
- name: Run visual tests
working-directory: demo
run: |
npm install
npx playwright install --with-deps chromium
npm run build
npm run test
- name: Upload Playwright Test report
if: always()
uses: actions/upload-artifact@v4
with:
name: cockle-visual-tests
path: |
demo/test-results
demo/playwright-report