-
-
Notifications
You must be signed in to change notification settings - Fork 528
54 lines (46 loc) · 1.17 KB
/
ci.yml
File metadata and controls
54 lines (46 loc) · 1.17 KB
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
45
46
47
48
49
50
51
52
53
54
name: CI
on:
push:
branches: ["main"]
pull_request_target:
paths:
- 'src/**'
- 'test/**'
- '*.json'
- '*.js'
- '*.ts'
- 'lib/**'
- 'scripts/**'
workflow_dispatch:
jobs:
build:
strategy:
matrix:
node-version: [22.x, 24.x]
platform:
- os: ubuntu-latest
shell: bash
- os: macos-latest
shell: bash
- os: windows-latest
shell: bash
fail-fast: false
runs-on: ${{ matrix.platform.os }}
defaults:
run:
shell: ${{ matrix.platform.shell }}
steps:
- name: Checkout Repository
uses: actions/checkout@v5
- name: Use Nodejs ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run Tests Windows (incomplete coverage)
if: matrix.platform.os == 'windows-latest'
run: npm test -- -c -t0 --allow-incomplete-coverage
- name: Run Tests Unix (complete coverage)
if: matrix.platform.os != 'windows-latest'
run: npm test -- -c -t0