Skip to content

Commit 9994802

Browse files
committed
Adds GitHub Actions CI, removes .travis.yml
1 parent c57d89e commit 9994802

File tree

2 files changed

+23
-9
lines changed

2 files changed

+23
-9
lines changed

.github/workflows/ci.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
test:
9+
strategy:
10+
matrix:
11+
node-version: [18.x, 20.x, 22.x]
12+
os: [ ubuntu-latest, macos-latest, windows-latest ]
13+
14+
runs-on: ${{ matrix.os }}
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Use Node.js ${{ matrix.node-version }}
19+
uses: actions/setup-node@v4
20+
with:
21+
node-version: ${{ matrix.node-version }}
22+
- run: npm install
23+
- run: npm test

.travis.yml

-9
This file was deleted.

0 commit comments

Comments
 (0)