Skip to content

Commit 66c0912

Browse files
committed
chore: move CI to Action
1 parent 6a08885 commit 66c0912

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: lukeed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
name: Node.js v${{ matrix.nodejs }}
8+
runs-on: ubuntu-latest
9+
timeout-minutes: 3
10+
strategy:
11+
matrix:
12+
nodejs: [6, 8, 10, 12, 14]
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v1
16+
with:
17+
node-version: ${{ matrix.nodejs }}
18+
19+
- run: npm ci
20+
- run: npm test

.travis.yml

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

0 commit comments

Comments
 (0)