We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3bc7f0 commit bbb3755Copy full SHA for bbb3755
1 file changed
.github/workflows/review.yml
@@ -0,0 +1,20 @@
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: grunt -v
0 commit comments