-
Notifications
You must be signed in to change notification settings - Fork 214
72 lines (57 loc) · 1.49 KB
/
ci.yml
File metadata and controls
72 lines (57 loc) · 1.49 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
name: Rollbar.js CI
on:
push:
branches: [master]
tags: [v*]
pull_request:
permissions:
checks: write
contents: read
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- node: 18
npm: ^9
- node: 20
npm: ^10
- node: 22
npm: ^10
- node: 24
npm: ^11
- node: latest
npm: latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Update npm
run: npm install -g npm@${{ matrix.npm }}
- name: npm install
run: npm install
- name: Lint
uses: wearerequired/lint-action@v2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
prettier: true
prettier_extensions: js,cjs,mjs,md,json,yml,yaml
eslint: true
eslint_args: '--max-warnings 0'
eslint_extensions: js,mjs,cjs
- name: Build
run: npm run build
- name: Validate ES5 compatibility
run: npm run validate:es5
- name: Run server tests
run: npm run test:server
- name: Install Playwright browsers
run: npx playwright install chromium
- name: Run browser tests (Web Test Runner)
run: npm run test:wtr
- name: Validate examples
run: npm run validate:examples