-
Notifications
You must be signed in to change notification settings - Fork 0
22 lines (22 loc) · 806 Bytes
/
Copy pathci.yml
File metadata and controls
22 lines (22 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install xmlstarlet (entity expansion in generate-sef.sh)
run: sudo apt-get update && sudo apt-get install -y xmlstarlet
- name: Headless XSLT test suites (extractor, canonical, lint)
run: make test
- name: Install Node dependencies
run: make install
- name: Install Playwright browser
run: npx playwright install --with-deps chromium
- name: Browser test suites (make test-browser rebuilds the SEF first)
run: make test-browser