-
Notifications
You must be signed in to change notification settings - Fork 10
34 lines (29 loc) · 889 Bytes
/
ci.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
name: CI
on: [push, pull_request]
jobs:
build:
name: Build & test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x, v20.8.0, 22.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
check-latest: true
cache: 'npm'
cache-dependency-path: 'package.json'
- run: npm install
- run: npm run build
- run: npm test
env:
NODE_OPTIONS: ${{ matrix.node-version == '22.x' && '--experimental-require-module' || '' }}
- name: Deploy docs
if: github.ref == 'refs/heads/main' && matrix.node-version == 'v20.8.0'
uses: JamesIves/github-pages-deploy-action@v4.5.0
with:
single-commit: true
branch: gh-pages
folder: typedoc