Skip to content

Commit f4e79ae

Browse files
committed
travis: migrate to GitHub Actions
1 parent 14e4a5e commit f4e79ae

File tree

2 files changed

+21
-8
lines changed

2 files changed

+21
-8
lines changed

.github/workflows/test.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Lint and test
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
node-version: [14, 16, 18]
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Use Node.js ${{ matrix.node-version }}
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: ${{ matrix.node-version }}
19+
- run: make setup
20+
- run: make lint
21+
- run: make test

.travis.yml

-8
This file was deleted.

0 commit comments

Comments
 (0)