Skip to content

Commit dc1dd3f

Browse files
committed
Replace Travis with GitHub Actions
1 parent 18c56d3 commit dc1dd3f

2 files changed

Lines changed: 23 additions & 11 deletions

File tree

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on:
2+
- push
3+
- pull_request
4+
5+
jobs:
6+
test:
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
node: [12, 14, 16, 18, 20, 22, 24]
11+
12+
name: node.js v${{ matrix.node }}
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: ${{ matrix.node }}
20+
21+
- run: node --version
22+
- run: npm install
23+
- run: npm test

.travis.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)