Skip to content

Commit 386c7de

Browse files
committed
chore: Add github workflow config.
1 parent 9c98218 commit 386c7de

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Test whereis
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
build-deploy:
8+
runs-on: ubuntu-18.04
9+
steps:
10+
- uses: actions/checkout@master
11+
12+
- name: Setup Node
13+
uses: actions/setup-node@v1
14+
with:
15+
node-version: 10
16+
17+
- run: npm install
18+
- run: npm run test
19+

0 commit comments

Comments
 (0)