-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 891 Bytes
/
Copy pathci.yml
File metadata and controls
36 lines (33 loc) · 891 Bytes
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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm audit --omit=dev --audit-level=high
- run: npm run typecheck
- run: npm run lint
- run: npm test
- run: npm run test:docx
- run: npm run test:odt
- run: npm run test:epub
- run: npm run test:html
- run: npm run test:markdown
- run: npm run test:xml
- run: npm run test:exports
- run: npm run benchmark:large
- run: npm run build
- run: npm run package
- run: npm run package:validate