Skip to content

Commit 35c9f57

Browse files
committed
ci(test): move to GitHub Actions
1 parent 8a1f170 commit 35c9f57

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.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+
branches:
5+
- "greenkeeper/**"
6+
pull_request:
7+
types: [opened, synchronize]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
node_version: [8, 10, 12]
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: actions/setup-node@v1
19+
with:
20+
node-version: ${{ matrix.node_version }}
21+
- run: npm ci
22+
- run: npm test

0 commit comments

Comments
 (0)