Skip to content

Commit 8802bc1

Browse files
authored
added basic workflow
1 parent e0610ac commit 8802bc1

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/push.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on: [push, pull_request]
2+
name: Test
3+
jobs:
4+
test:
5+
name: Ubuntu on node ${{ matrix.node }}
6+
runs-on: ubuntu-18.04
7+
strategy:
8+
matrix:
9+
os: [ubuntu-18.04]
10+
node: [8, 12, 13]
11+
steps:
12+
- uses: actions/checkout@v1
13+
- uses: actions/setup-node@v1
14+
with:
15+
node-version: ${{ matrix.node }}
16+
- run: yarn global add lerna
17+
- run: yarn run test

0 commit comments

Comments
 (0)