Skip to content

Commit f743c73

Browse files
committed
github workflow: ci
1 parent 2a7bfeb commit f743c73

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# https://github.com/actions/setup-node
2+
name: Node.js CI
3+
4+
on: [push]
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v2-beta
13+
with:
14+
node-version: '10'
15+
- run: yarn install --frozen-lockfile
16+
- run: yarn test:lint
17+
- run: yarn test:unit
18+
- run: yarn test:unit:cov
19+
- run: yarn build
20+
- run: yarn doc

0 commit comments

Comments
 (0)