Skip to content

Commit c0e8126

Browse files
committed
chore: add pull request workflow config.
1 parent b269fd1 commit c0e8126

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/pr.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
5+
jobs:
6+
build-deploy:
7+
runs-on: ubuntu-18.04
8+
steps:
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-node@v3
11+
with:
12+
node-version: 16
13+
14+
- run: npm install
15+
- run: npm run build
16+
- working-directory: core
17+
run: |
18+
npm run bundle
19+
npm run bundle:min
20+
npm run coverage
21+
22+
- run: npm run doc

0 commit comments

Comments
 (0)