This repository has been archived by the owner on Sep 8, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (81 loc) · 2.13 KB
/
validate-pr.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
name: Validate Push/PR
on:
push:
branches: [ 'pr/**' ]
pull_request:
branches: [ 'pr/**' ]
jobs:
commitlint:
name: Lint commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '15.x'
- name: Install dependencies
run: npm ci
- name: Commitlint
run: 'npx commitlint --from HEAD~1 --to HEAD --verbose'
test-app:
name: Integration and unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '15.x'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:app
test-e2e:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
name: End-to-end test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install webkit dependencies
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt-get update
sudo apt-get install --yes \
libegl1 \
libopus0 \
libwoff1 \
libharfbuzz-icu0 \
gstreamer1.0-plugins-base \
libgstreamer-gl1.0-0 \
gstreamer1.0-plugins-bad \
libopenjp2-7 \
libwebpdemux2 \
libenchant1c2a \
libhyphen0 \
libgles2 \
gstreamer1.0-libav \
libevdev2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '15.x'
- name: Install dependencies
run: |
npm ci
npm i -g http-server concurrently
- name: Build app
run: npm run build
- name: Run tests
run: |
concurrently --success="first" --kill-others --kill-others-on-fail \
"http-server ./dist --port 8080 --silent" \
"npm:test:e2e"
shell: bash