Skip to content

Commit ddb7829

Browse files
Moving to GitHub Actions
1 parent 096f75c commit ddb7829

3 files changed

Lines changed: 23 additions & 9 deletions

File tree

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: test
2+
on:
3+
push:
4+
5+
concurrency:
6+
group: branch-node-${{ github.ref }}
7+
cancel-in-progress: true
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
node: [12, 14, 16]
15+
steps:
16+
- uses: actions/checkout@v2
17+
- uses: actions/setup-node@v2
18+
with:
19+
node-version: ${{ matrix.node }}
20+
21+
- run: npm i
22+
- run: npm run test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.*
22
!.editorconfig
33
!.gitignore
4+
!.github
45
!.rollup.js
56
!.tape.js
67
!.travis.yml

.travis.yml

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

0 commit comments

Comments
 (0)