forked from Flowpack/media-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
128 lines (99 loc) · 2.58 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
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Run linting
run: yarn lint
codestyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.composer/cache
key: dependencies-composer-${{ hashFiles('composer.json') }}
- name: Install dependencies
uses: php-actions/composer@v6
with:
php_version: 7.4
version: 2
- name: PHPStan
uses: php-actions/phpstan@v3
with:
php_version: 7.4
command: analyse
php-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.composer/cache
key: dependencies-composer-${{ hashFiles('composer.json') }}
- name: Install dependencies
uses: php-actions/composer@v6
with:
php_version: 7.4
version: 2
- name: Run PHPUnit tests
run: composer test
js-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
with:
node-version: '16'
cache: 'yarn'
- uses: actions/checkout@v2
- name: Install dependencies
run: yarn
- name: Run mocha tests
run: yarn test:unit
e2e:
env:
# Solves error when parcel tries to count cpus via lscpu
PARCEL_WORKERS: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Build main module
run: yarn build:module
- name: Build plugin for Neos UI
run: yarn build:plugin
- name: Run TestCafe
run: yarn test:github-actions
- name: Archive failure screenshots
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: e2e-failure-screenshots
path: screenshots