Skip to content

Commit 2cb3217

Browse files
committed
chore: add .github/workflows/pull_request.yml
1 parent ec0f9de commit 2cb3217

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/pull_request.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build & Deploy
2+
on:
3+
pull_request:
4+
5+
jobs:
6+
build-deploy:
7+
runs-on: ubuntu-18.04
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v2
11+
with:
12+
node-version: 14
13+
14+
- run: npm install
15+
- run: npm run build
16+
- run: npm run doc
17+
- run: npm run test:coverage

0 commit comments

Comments
 (0)