-
Notifications
You must be signed in to change notification settings - Fork 66
84 lines (68 loc) · 2.33 KB
/
ci.yaml
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
name: AWS RUM Web Client Continuous Build
on:
push:
branches: [main, release/*.*.*]
pull_request:
branches: [main, release/*.*.*]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-test:
name: Check Format and Run Unit Tests
runs-on: ubuntu-20.04
permissions: read-all
steps:
- name: Checkout AWS RUM Web Client Repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Cache NPM modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- name: Check Code Format
run: npx prettier --check .
- name: Run Linter
run: npm run lint:errors
- name: Run Unit Tests
run: npm run test
integ-test:
name: Run Integ Tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
permissions: read-all
env:
NODE_OPTIONS: --max-http-header-size=80000
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest]
steps:
- name: Checkout AWS RUM Web Client Repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Cache NPM modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- name: Run Integ Tests on ubuntu-20.04
if: matrix.os == 'ubuntu-20.04'
run: |
npm run integ:headless-linux
- name: Run Integ tests on windows-latest
if: matrix.os == 'windows-latest'
run: |
npm run integ:headless-windows