-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (28 loc) · 744 Bytes
/
Copy pathci.yml
File metadata and controls
31 lines (28 loc) · 744 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
name: CI
on:
push:
branches: ['main', 'agent/**']
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22, 24]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: global-template/docgen/package.json
- name: Syntax check
working-directory: global-template/docgen
run: npm run check
- name: Unit and integration tests
working-directory: global-template/docgen
run: npm test
- name: Installer dry run
run: node install.mjs --dry-run --no-link-cli