Skip to content

Commit 64380ca

Browse files
committed
add workflow to test on push
1 parent debdb82 commit 64380ca

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/push.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
on: push
2+
jobs:
3+
test:
4+
runs-on: ubuntu-latest
5+
steps:
6+
- uses: actions/checkout@v2
7+
- uses: actions/setup-node@v1
8+
with:
9+
node-version: '12.x'
10+
- run: yarn
11+
- run: yarn run build
12+
- run: yarn run test

0 commit comments

Comments
 (0)