generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 85
88 lines (72 loc) · 2.55 KB
/
ci.yaml
File metadata and controls
88 lines (72 loc) · 2.55 KB
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
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-latest
permissions: read-all
steps:
- name: Checkout AWS RUM Web Client Repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Cache NPM modules
uses: actions/cache@v5
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 (${{ matrix.browser }} 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-latest, windows-latest, macos-latest]
browser: [firefox, chrome, webkit, edge]
exclude:
- os: ubuntu-latest
browser: webkit
- os: windows-latest
browser: webkit
steps:
- name: Checkout AWS RUM Web Client Repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Cache NPM modules and Playwright browsers
uses: actions/cache@v5
with:
path: |
~/.npm
~/.cache/ms-playwright
key: ${{ runner.os }}-deps-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-deps-
- run: npm ci
- name: Install Playwright Browsers
run: npx playwright install
- name: Run Integration Tests
run: npm run integ:${{ matrix.browser }}