Skip to content

Commit 8ae3d87

Browse files
committed
Add review.yml
Change-Id: Ib4d29fb9fae0b73221180be499bf6403c315821f
1 parent b3bc7f0 commit 8ae3d87

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/review.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Review
2+
3+
on:
4+
pull_request:
5+
branches: [ "master" ]
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Use Node.js
14+
uses: actions/setup-node@v3
15+
with:
16+
node-version: 16
17+
cache: 'npm'
18+
- run: npm i grunt-cli -g
19+
- run: npm i
20+
- run: npm run build
21+
- run: npm test

0 commit comments

Comments
 (0)