Skip to content

Commit ce3167f

Browse files
committed
Configure GitHub Action for CI
1 parent 86ebef5 commit ce3167f

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

.github/workflows/ci.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
node: [8, 10, 12, 14, 16, 18, 20, 22, 24]
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-node@v4
12+
with:
13+
node-version: ${{ matrix.node }}
14+
- run: npm install
15+
- run: npm test
16+
env:
17+
CI: true

.travis.yml

-16
This file was deleted.

0 commit comments

Comments
 (0)