-
-
Notifications
You must be signed in to change notification settings - Fork 34
23 lines (21 loc) · 669 Bytes
/
Copy pathci.yaml
File metadata and controls
23 lines (21 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
on: [push, pull_request]
name: CI
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [20.x, 21.x, 22.x, 23.x, 24.x, 25.x, 26.x]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Test
run: npm test