Skip to content

Commit 7cd7f30

Browse files
committed
ci: use github workflows
1 parent 4de50ae commit 7cd7f30

File tree

4 files changed

+17
-149
lines changed

4 files changed

+17
-149
lines changed

.github/workflows/test.yml

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

.jscsrc

-46
This file was deleted.

.jshintrc

-89
This file was deleted.

.travis.yml

-14
This file was deleted.

0 commit comments

Comments
 (0)