Skip to content

Commit 0be460b

Browse files
authored
Add CI via GitHub Actions (mrmckeb#39)
1 parent 4e0b579 commit 0be460b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build-and-test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: actions/setup-node@v1
11+
with:
12+
node-version: 10.x
13+
- name: Yarn install, build, and test
14+
run: |
15+
yarn install
16+
yarn build
17+
yarn test

0 commit comments

Comments
 (0)