Skip to content

Commit 190623e

Browse files
committed
chore: add .github/workflows/pr.yml
1 parent 67d30d7 commit 190623e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/pr.yml

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

0 commit comments

Comments
 (0)