-
Notifications
You must be signed in to change notification settings - Fork 559
44 lines (34 loc) · 1 KB
/
verify.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
name: Verify changes
on: pull_request
jobs:
verify:
name: Verify changes
strategy:
matrix:
# latest node & minimum node according to pkg.json engines
node-version: [18.0, 21.x]
os: [ubuntu-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Linting & Formatting
run: npm run lint
- name: Node tests
run: npm run test:node
- name: Install chromium
run: npx playwright install --with-deps chromium
- name: Browser tests
run: npm run test
- name: Performance tests
run: npm run test:perf